Share

Class Pnt4f

 object --+    
          |    
??.instance --+
              |
             Pnt4f

Instance Methods
__init__(x, y, z, w)

The constructor of the Pnt4f class.
__reduce__()
__str__()
float w()

Returns the w component.
float x()

Returns the x component.
float y()

Returns the y component.
float z()

Returns the z component.

Inherited from unreachable.instance: __new__

Class Variables
  __instance_size__ = 32


Method Details

__init__(x, y, z, w)

(Constructor)

The constructor of the Pnt4f class.

Parameters:
  • x (float) - The x component.
  • y (float) - The y component.
  • z (float) - The z component.
  • w (float) - The w component.
Overrides: object.__init__

__reduce__()

Overrides: object.__reduce__
(inherited documentation)

__str__()

(Informal representation operator)

Overrides: object.__str__
(inherited documentation)

w()

Returns the w component.

Returns: float
The w component.

x()

Returns the x component.

Returns: float
The x component.

y()

Returns the y component.

Returns: float
The y component.

z()

Returns the z component.

Returns: float
The z component.

Was this information helpful?