Enum LineType
An enumeration indicating how input points should be interpreted to create lines
Parent type
LineType
appears in the LinePrimitive
message schema.
Values
name | value | description |
---|---|---|
LINE_STRIP | 0 | Connected line segments: 0-1, 1-2, ..., (n-1)-n |
LINE_LOOP | 1 | Closed polygon: 0-1, 1-2, ..., (n-1)-n, n-0 |
LINE_LIST | 2 | Individual line segments: 0-1, 2-3, 4-5, ... |