Lines is a Graphic which is rendered as a collection of independent lines.
| 13 | |
| 14 | // Lines is a Graphic which is rendered as a collection of independent lines. |
| 15 | type Lines struct { |
| 16 | Graphic // Embedded graphic object |
| 17 | uniMVPm gls.Uniform // Model view projection matrix uniform location cache |
| 18 | } |
| 19 | |
| 20 | // NewLines returns a pointer to a new Lines object. |
| 21 | func NewLines(igeom geometry.IGeometry, imat material.IMaterial) *Lines { |
nothing calls this directly
no outgoing calls
no test coverage detected