TargetTriangles are Triangles generated by a Target with MakeTriangles method. They can be drawn onto that (no other) Target.
| 74 | // TargetTriangles are Triangles generated by a Target with MakeTriangles method. They can be drawn |
| 75 | // onto that (no other) Target. |
| 76 | type TargetTriangles interface { |
| 77 | Triangles |
| 78 | |
| 79 | // Draw draws Triangles onto an associated Target. |
| 80 | Draw() |
| 81 | } |
| 82 | |
| 83 | // TrianglesPosition specifies Triangles with Position property. |
| 84 | type TrianglesPosition interface { |
nothing calls this directly
no outgoing calls
no test coverage detected