Questions tagged [scenegraph]

A scene graph is a general data structure commonly used by vector-based graphics editing applications and modern computer games, which arranges the logical and often (but not necessarily) spatial representation of a graphical scene.

Scene graphs are data structures used to hierarchically organize and manage the contents of spatially oriented scene data.A scene graph is a collection of nodes in a graph or tree structure. A tree node (in the overall tree structure of the scene graph) may have many children but often only a single parent, with the effect of a parent applied to all its child nodes; an operation performed on a group automatically propagates its effect to all of its members. In many programs, associating a geometrical transformation matrix (see also transformation and matrix) at each group level and concatenating such matrices together is an efficient and natural way to process such operations. A common feature, for instance, is the ability to group related shapes/objects into a compound object that can then be moved, transformed, selected, etc. as easily as a single object.

Examples of such programs include Acrobat 3D, Adobe Illustrator, AutoCAD, CorelDRAW, OpenSceneGraph, OpenSG, VRML97, X3D, Hoops and Open Inventor.

179 questions
1
vote
1 answer

Is there a way of visualizing a Drake SceneGraph in ROS RViz?

I am working on a project that uses a MultiBodyPlant and a SceneGraph in Drake. Is there a way of visualizing the links and joints of the plant in ROS RViz?
Robert
  • 11
  • 2
1
vote
1 answer

Can a cocos2d scene occupy only part of the device's screen?

I am working on an iOS action game wherein the player travels between various "rooms," each of which is contained in a CCScene. When the player exits a room, the next one "slides" onto the screen via the wonderful built-in transitions provided by…
todd412
  • 1,308
  • 2
  • 17
  • 24
1
vote
2 answers

How to mix Poster-grid / Row-list types in one screen using brightscript and Roku?

How can I use multiple screen types on the same screen? For example, how can I show the PosterGrid on top and then the Rowlist at the bottom..?
Raj G
  • 73
  • 8
1
vote
1 answer

How to combine Scenegraph Developer Extensions (SGDEX)

The new Roku scenegraph developer extensions seem pretty useful. I have two SGDEX views that are useful to me. However I need to combine them and I do not see any documentation on how to do it. The Custom+Scene example is what I am working off…
MarlonC
  • 67
  • 6
1
vote
1 answer

How can implement Flurry Analytics for RokuSG?

I was unable to find the SDK for Roku. Please tell me whether Flurry Analytics SDK is available for RokuSG or not? If there aren't any SDK's, then please suggest me a way to implement it without the SDK.
Balbant Singh
  • 187
  • 1
  • 10
1
vote
2 answers

Capture string entered in Roku keyboard

I wanted to use a keyboard or a mini keyboard widget for a Roku channel. Rendering a keyboard on the display is straight forward however I cannot find any information on creating an observer for the keyboard entry and how one goes about selecting…
TKPhillyBurb
  • 91
  • 3
  • 11
1
vote
1 answer

brightscript: prevent RowList from looping through its content - stop at the last item

Brightscript's RowList has a nice feature: when it contains 5 items and more, it does not stop at the last one, when scrolling, but it brings the first one from the right and so on in a loop. My problem is that I have to present a limited number of…
Proud Roku
  • 15
  • 3
1
vote
1 answer

Can't play video using Widevine DRM with DASH streaming URL

We are implementing one video Roku channel and in that, we want to use the Widevine DRM with DASH Streaming URL to play the video. I followed the documentation given by Roku development forum but it is not working. My current code…
1
vote
2 answers

Scene graph implementation for Papervision?

I'm trying to use Papervision for Flash, for this project of mine, which involves a 3D model of a mechanical frame, consisting of several connected parts. Movement of one of the parts results in a corresponding change in orientation and position of…
user38903
  • 43
  • 2
  • 6
1
vote
2 answers

How to re-render content node / list upon Keyboard Entry?

I have a custom markup list that I am displaying two labels. The second label, displays a value that I have saved in the registry. Upon clicking on the item, a keyboard dialog displays and the user can type in some information to then be saved. I am…
reid
  • 546
  • 6
  • 21
1
vote
1 answer

How to utilize LayoutGroups properly?

I am trying to customize a layout without having to do too much custom translations. I rather see if I can go with "convention over configuration". I started to implement most, if not, my entire screen to be grouped with LayoutGroups, as seen below.…
reid
  • 546
  • 6
  • 21
1
vote
1 answer

Trigger Roku back action

Is there a way to trigger a roku back action via BrightScript ? I want to pop the current screen off the navigation stack, and show the previous screen. I need this for a couple reason : 1.) A back button will be present on screen, that the user…
Fabii
  • 3,820
  • 14
  • 51
  • 92
1
vote
2 answers

Roku : Update RowList content without changing current focus item

Is there a way to update or append items to RowList content while keeping focus on the current selected/highlighted row item ? Each row in the rowList is an independent list that is loaded asynchronously. The rowList is updated via an observeField…
Fabii
  • 3,820
  • 14
  • 51
  • 92
1
vote
2 answers

Java3d scenegraph visualization tool

Is there a tool for visualizing a given java3d app's scenegraph? Just like there is tools for auto generating UML diagrams. Edit: if not, is there any good free tools for drawing such graphs? os x
randoms
  • 2,793
  • 1
  • 31
  • 48
1
vote
1 answer

Roku - HTTP redirect url inside poster not working

If I set the uri field of a poster node with a HTTP redirection url, I am facing trouble getting the image loaded. Does Roku poster node support HTTP redirects? Poster is loading if I use a direct image link anyways. The issue seems to be there only…
nithin ks
  • 285
  • 3
  • 11