Module vrOSGTypes :: Class Pnt3f
[frames] | no frames]

Class Pnt3f

 object --+    
          |    
??.instance --+
              |
             Pnt3f

Instance Methods
 
__init__(x, y, z)
The constructor of the Pnt3f class.
 
__reduce__()
 
__str__()
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__ = 40
Method Details

__init__(x, y, z)
(Constructor)

 

The constructor of the Pnt3f class.

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

__reduce__()

 
Overrides: object.__reduce__
(inherited documentation)

__str__()
(Informal representation operator)

 
Overrides: object.__str__
(inherited documentation)

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.