class bgplot.entities.point.Point(x: float, y: float, z: float)

a named tuple that contains the information of a 3D point in space

Notes

supports addition and subtraction with other Point class instances. Supports scalar multiplication

Attributes:
xfloat

the x value of the point

yfloat

the y value of the point

zfloat

the z value of the point

x: float

Alias for field number 0

y: float

Alias for field number 1

z: float

Alias for field number 2