zscript-doc/api/level/Vertex.md

23 lines
229 B
Markdown
Raw Permalink Normal View History

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