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
0
votes
1 answer

How to pass an object of anonymous functions to another object?

I am trying to create a bunch of callback functions that are in an Associative Array, which then is saved to another Scenegraph object's interface field. However, when accessing the interface field in the same object, it states that the function is…
reid
  • 546
  • 6
  • 21
0
votes
2 answers

Use LabelList or MarkupList to render two labels for each content node?

I am looking to implement a LabelList or MarkupList ( if need be ), where the content nodes contain two labels ( two titles, lack of a better term ). I noticed that many content nodes on the roku's default settings page have two labels that are…
reid
  • 546
  • 6
  • 21
0
votes
2 answers

ROKU is playing about a 1 hour delay on the live stream

ROKU is playing about a 1 hour delay on the live stream. It is the same feed but processing data at a much slower speed than the other platforms. Where is the problem either roku player or live stream? Please suggest.
Balbant Singh
  • 187
  • 1
  • 10
0
votes
2 answers

Name of the method that removes a tree node but keeps its children

I am developing an open source JS library that deals with tree structures and scene graphs. As it is targeted for general use, the names of the API methods should follow conventions. However, I cannot find the term for a tree operation where a node…
Akseli Palén
  • 27,244
  • 10
  • 65
  • 75
0
votes
2 answers

Roku SG: Can be change default behaviour and direction of ScrollingLabel node?

I am working for Roku Scene Graph application. I used "ScrollingLabel" node, it is scrolling label text right to left until the end of the string is visible, then transition back to the partial string with the end then it transitions to the full…
Balbant Singh
  • 187
  • 1
  • 10
0
votes
1 answer

Is it possible to keep the source code in one location and target many replications in Roku SG?

I have a many applications with different assets like font, image and color etc. but source code are same. For example: I have 5 or more than 5 different Roku SG application but the all application has same code with different assets like(image,…
Manjeet
  • 191
  • 1
  • 14
0
votes
1 answer

How to handle a request with HTTPS protocol in Roku SG while website insecure?

I am working on a Roku Scene Graph application. It gets request data from remote servers specified by URLs. However, the response was not returning and showing an error: SSL: no alternative certificate subject name matches target host name... How…
Balbant Singh
  • 187
  • 1
  • 10
0
votes
2 answers

Is there any way to find out issue without Roku TV 5203X?

I am working for roku app, client said some animation issue on Roku TV 5203X. We have tested app working fine on roku stick, roku-3, roku-4 and roku premium devices but we have not Roku TV 5203X. Is there any way to find out issue without Roku TV…
Balbant Singh
  • 187
  • 1
  • 10
0
votes
1 answer

How to disable update on a QQuickItem

I have a QQuickItem derived class // Class class MyQQuickItem : public QQuickItem { Q_OBJECT } // updatePaintNode in cpp function QSGNode * MyQQuickItem::updatePaintNode(QSGNode * oldNode, UpdatePaintNodeData * updatePaintNodeData) { // draw…
TheWaterProgrammer
  • 7,055
  • 12
  • 70
  • 159
0
votes
2 answers

Is there google analytic SDK available for Roku SG?

We want to implement google analytic by SDK in our Roku SG application. We searched about google analytic sdk for Roku SG, we did not find sdk. Is google analytic sdk available for Roku SG?
Balbant Singh
  • 187
  • 1
  • 10
0
votes
2 answers

Black screen appearing without loading indicator after splash screen in roku scene graph

I am working on Roku app using Scene Graph component. In my application when i launch application then showing black screen on few seconds between the splash screen to the main screen but i want showing loader in between screen. it is possible in…
Balbant Singh
  • 187
  • 1
  • 10
0
votes
1 answer

Why is Scala JavaFX application slowing down when run from .jar instead of using sbt run?

I'm struggling to what code I should present here, because it is very complicated and it is working at the same time. The thing is that I build a relatively complicated JavaFX sceengraph and update the content of a VBox with it from a Scala…
sbtpr
  • 541
  • 5
  • 18
0
votes
1 answer

Why same images are showing different looking on different roku devices?

I have created more then one Grid by Markup Grid node to display thumbnail, I have tested it in different roku devices(Roku-3, Roku-4 and Rock-stick). The thumbnails are looking good in Roku-4 but Roku-3 and Rock-stick look pixelated or stretch. …
Balbant Singh
  • 187
  • 1
  • 10
0
votes
2 answers

Why are heavy images not loading when we scroll down and scroll up

I am working on Roku app using Scene Graph component. In my application first time images(posters) loaded properly but, when i scroll down and up, images(posters) are unable to load . I observed that it happens only when heavy images. Please…
Vijay Kumar
  • 141
  • 1
  • 13
0
votes
2 answers

How to display the Close caption in bottom of the video screen?

I am working on a Roku app using Scene Graph components. In my application, closed captions (subtitles) are showing on top of the video screen. However I want to display them on the bottom of the video screen. Please provide suggestions to resolve…
Vijay Kumar
  • 141
  • 1
  • 13