zscript-doc/api/level/Vertex.md

23 lines
235 B
Markdown
Raw Normal View History

2018-12-29 16:05:19 -08:00
# Vertex
A point in world space.
```
struct Vertex play
{
readonly vector2 P;
2018-12-29 20:04:32 -08:00
int Index();
2018-12-29 16:05:19 -08:00
}
```
- `P`
The point this object represents.
2018-12-29 20:04:32 -08:00
- `Index`
The index of this vertex in the global vertices array.
2018-12-29 16:05:19 -08:00
<!-- EOF -->