Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.52 KB

shape.md

File metadata and controls

29 lines (20 loc) · 1.52 KB

Shape

Shape {
  SFNode appearance  NULL   # {Appearance, PROTO}
  SFNode geometry    NULL   # {Geometry Primitive, PROTO}
  SFBool castShadows TRUE   # {TRUE, FALSE}
  SFBool isPickable  TRUE   # {TRUE, FALSE}
}

Description

The Shape node is used to create rendered objects in the world. Visible objects are constituted by a geometry and an appearance.

Field Summary

  • The appearance field contains an Appearance or PBRAppearance node that specifies the visual attributes (e.g., material and texture) to be applied to the geometry.

  • The geometry field contains a Geometry node: Box, Capsule, Cone, Cylinder, ElevationGrid, IndexedFaceSet, IndexedLineSet, Mesh, Plane, PointSet or Sphere. The specified Geometry node is rendered with the specified appearance nodes applied.

  • The castShadows field allows the user to turn on (TRUE) or off (FALSE) shadows casted by this shape. However, shapes containing more than 65535 vertices will ignore this field and won't cast any shadow to save performance.

  • The isPickable field defines if the object is detected (TRUE) or not (FALSE) when clicking on the 3D scene.

Note: Objects cast shadows only if the world contains at least one Light node with castShadows field set to TRUE and if shadows are not disabled in the application preferences.