mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-06 01:15:05 -05:00
14 lines
401 B
Python
14 lines
401 B
Python
|
from lib.hachoir_core.field import StaticFieldSet, Float32
|
||
|
|
||
|
class Vertex(StaticFieldSet):
|
||
|
format = ((Float32, "x"), (Float32, "y"), (Float32, "z"))
|
||
|
|
||
|
def createValue(self):
|
||
|
return (self["x"].value, self["y"].value, self["z"].value)
|
||
|
|
||
|
class MapUV(StaticFieldSet):
|
||
|
format = ((Float32, "u"), (Float32, "v"))
|
||
|
|
||
|
def createValue(self):
|
||
|
return (self["u"].value, self["v"].value)
|