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.
Constructor Details
#initialize(**args) ⇒ Quaternion
Returns a new instance of Quaternion.
517 518 519 |
# File 'generated/google/apis/poly_v1/classes.rb', line 517 def initialize(**args) update!(**args) end |
Instance Attribute Details
#w ⇒ Float
The scalar component.
Corresponds to the JSON property w
500 501 502 |
# File 'generated/google/apis/poly_v1/classes.rb', line 500 def w @w end |
#x ⇒ Float
The x component.
Corresponds to the JSON property x
505 506 507 |
# File 'generated/google/apis/poly_v1/classes.rb', line 505 def x @x end |
#y ⇒ Float
The y component.
Corresponds to the JSON property y
510 511 512 |
# File 'generated/google/apis/poly_v1/classes.rb', line 510 def y @y end |
#z ⇒ Float
The z component.
Corresponds to the JSON property z
515 516 517 |
# File 'generated/google/apis/poly_v1/classes.rb', line 515 def z @z end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
522 523 524 525 526 527 |
# File 'generated/google/apis/poly_v1/classes.rb', line 522 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 |