Points represents a geometry containing only points
| 13 | |
| 14 | // Points represents a geometry containing only points |
| 15 | type Points struct { |
| 16 | Graphic // Embedded graphic |
| 17 | uniMVPm gls.Uniform // Model view projection matrix uniform location cache |
| 18 | uniMVm gls.Uniform // Model view matrix uniform location cache |
| 19 | } |
| 20 | |
| 21 | // NewPoints creates and returns a graphic points object with the specified |
| 22 | // geometry and material. |
nothing calls this directly
no outgoing calls
no test coverage detected