Class: Google::Apis::PolyV1::Quaternion
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::PolyV1::Quaternion
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/poly_v1/classes.rb,
generated/google/apis/poly_v1/representations.rb,
generated/google/apis/poly_v1/representations.rb 
Overview
A Quaternion. Please note: if in the response you see "w: 1" and nothing else this is the default value of [0, 0, 0, 1] where x,y, and z are 0.
Instance Attribute Summary collapse
- 
  
    
      #w  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The scalar component.
 - 
  
    
      #x  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The x component.
 - 
  
    
      #y  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The y component.
 - 
  
    
      #z  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The z component.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Quaternion 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Quaternion.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Quaternion
Returns a new instance of Quaternion
      528 529 530  | 
    
      # File 'generated/google/apis/poly_v1/classes.rb', line 528 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#w ⇒ Float
The scalar component.
Corresponds to the JSON property w
      511 512 513  | 
    
      # File 'generated/google/apis/poly_v1/classes.rb', line 511 def w @w end  | 
  
#x ⇒ Float
The x component.
Corresponds to the JSON property x
      516 517 518  | 
    
      # File 'generated/google/apis/poly_v1/classes.rb', line 516 def x @x end  | 
  
#y ⇒ Float
The y component.
Corresponds to the JSON property y
      521 522 523  | 
    
      # File 'generated/google/apis/poly_v1/classes.rb', line 521 def y @y end  | 
  
#z ⇒ Float
The z component.
Corresponds to the JSON property z
      526 527 528  | 
    
      # File 'generated/google/apis/poly_v1/classes.rb', line 526 def z @z end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      533 534 535 536 537 538  | 
    
      # File 'generated/google/apis/poly_v1/classes.rb', line 533 def update!(**args) @w = args[:w] if args.key?(:w) @x = args[:x] if args.key?(:x) @y = args[:y] if args.key?(:y) @z = args[:z] if args.key?(:z) end  |