|
Uranium
Application Framework
|
A vertex with a position and a normal. More...
Inherits object.
Public Member Functions | |
| def | __init__ (self, args, kwargs) |
| Construct a vertex. More... | |
| def | position (self) |
| Get the position the vertex. More... | |
| def | normal (self) |
| Get the normal the vertex. More... | |
| def | hasNormal (self) |
| def | toString (self) |
| Convert the vertex into a string, which is required for parsing over sockets / streams It's kinda hackish to do it this way, but it would take to much effort to implement myself. More... | |
A vertex with a position and a normal.
| def UM.Mesh.Vertex.Vertex.__init__ | ( | self, | |
| args, | |||
| kwargs | |||
| ) |
Construct a vertex.
Possible keyword parameters:
Unnamed arguments:
| def UM.Mesh.Vertex.Vertex.normal | ( | self | ) |
Get the normal the vertex.
| def UM.Mesh.Vertex.Vertex.position | ( | self | ) |
Get the position the vertex.
| def UM.Mesh.Vertex.Vertex.toString | ( | self | ) |
Convert the vertex into a string, which is required for parsing over sockets / streams It's kinda hackish to do it this way, but it would take to much effort to implement myself.