~ubuntu-branches/ubuntu/utopic/castle-game-engine/utopic

« back to all changes in this revision

Viewing changes to src/x3d/doc/x3d_nodes/1/layering.txt

  • Committer: Package Import Robot
  • Author(s): Abou Al Montacir
  • Date: 2013-04-27 18:06:40 UTC
  • Revision ID: package-import@ubuntu.com-20130427180640-eink4nmwzuivez1c
Tags: upstream-4.0.1
ImportĀ upstreamĀ versionĀ 4.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
X3DLayerNode : X3DNode {
 
2
  SFBool [in,out] isPickable TRUE
 
3
  SFNode [in,out] metadata NULL [X3DMetadataObject]
 
4
  SFNode [in,out] viewport NULL [X3DViewportNode]
 
5
}
 
6
 
 
7
X3DViewportNode : X3DGroupingNode {
 
8
  MFNode  [in]     addChildren             [X3DChildNode]
 
9
  MFNode  [in]     removeChildren          [X3DChildNode]
 
10
  MFNode  [in,out] children       []       [X3DChildNode]
 
11
  SFNode  [in,out] metadata       NULL     [X3DMetadataObject]
 
12
  SFVec3f []       bboxCenter     0 0 0    (-Inf,Inf)
 
13
  SFVec3f []       bboxSize       -1 -1 -1 (0,Inf) or -1 -1 -1
 
14
}
 
15
 
 
16
Layer : X3DLayerNode { 
 
17
  MFNode [in]     addChildren    []    [X3DChildNode]
 
18
  MFNode [in]     removeChildren []    [X3DChildNode]
 
19
  MFNode [in,out] children       []    [X3DChildNode]
 
20
  SFBool [in,out] isPickable     TRUE
 
21
  SFNode [in,out] metadata       NULL  [X3DMetadataObject]
 
22
  SFNode [in,out] viewport       NULL  [X3DViewportNode]
 
23
}
 
24
 
 
25
LayerSet : X3DNode { 
 
26
  SFInt32 [in,out]  activeLayer 0    (-Inf,Inf)
 
27
  MFNode  [in,out]  layers      []   [X3DLayerNode]
 
28
  SFNode  [in,out]  metadata    NULL [X3DMetadataObject]
 
29
  MFInt32 [in,out]  order       [0]   (0,Inf)
 
30
}
 
31
 
 
32
Viewport : X3DGroupingNode, X3DBoundedObject {
 
33
  MFNode  [in]     addChildren             [X3DChildNode]
 
34
  MFNode  [in]     removeChildren          [X3DChildNode]
 
35
  MFNode  [in,out] children       []       [X3DChildNode]
 
36
  MFFloat [in,out] clipBoundary   0 1 0 1  [0,1]
 
37
  SFNode  [in,out] metadata       NULL     [X3DMetadataObject]
 
38
  SFVec3f []       bboxCenter     0 0 0    (-Inf,Inf)
 
39
  SFVec3f []       bboxSize       -1 -1 -1 (0,Inf) or -1 -1 -1
 
40
}
 
41