Outline

Model ElementThe Outline element creates line segments between the specified markers.

Class Name

Outline

Attribute Summary

Name Property Modifiable by command? Designable?
markers Reference (Marker, count=0) No Yes
color String()  
hidden Bool() No

Usage

mb1 = Marker(body=ground)
mb2 = Marker(body=ground)
mb3 = Marker(body=ground)
out2 = Outline (label="Outline2", markers = [mb1, mb3, mb2])

Attributes

markers
Reference(Marker)
A list of existing markers. This property is mandatory and must contain at least two markers.
color
String()
The color of the graphic for H3D animation. Specified as RGB (Red : Green : Blue).
hidden
Boolean
Specifies weather the graphics is being written to the H3D file or not.
  • True implies that the graphic is hidden and is not written to the H3D file.
  • False implies that the graphic is not hidden and is written to the H3D file.
This attribute is optional. When not specified, it defaults to False.