Vuer

vuer.types

Url

python
class Url(str)

Source

URL string that supports path concatenation with / and +.

Vector3

python
class Vector3(NamedTuple)

Source

python
x: int
python
y: int
python
z: int

Euler

python
class Euler(NamedTuple)

Source

python
x: int
python
y: int
python
z: int
python
order: str = 'XYZ'

EulerDeg

python
class EulerDeg(Euler)

Source

python
unit: str = 'deg'

EulerDeg.to_rad

python
def to_rad(self) -> Euler

Source

Inherited members

Body

python
class Body(NamedTuple)

Source

python
position: Vector3
python
rotation: Euler
python
scale: float