Class: Google::Apis::PolyV1::Quaternion

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#wFloat

The scalar component. Corresponds to the JSON property w

Returns:

  • (Float)


500
501
502
# File 'generated/google/apis/poly_v1/classes.rb', line 500

def w
  @w
end

#xFloat

The x component. Corresponds to the JSON property x

Returns:

  • (Float)


505
506
507
# File 'generated/google/apis/poly_v1/classes.rb', line 505

def x
  @x
end

#yFloat

The y component. Corresponds to the JSON property y

Returns:

  • (Float)


510
511
512
# File 'generated/google/apis/poly_v1/classes.rb', line 510

def y
  @y
end

#zFloat

The z component. Corresponds to the JSON property z

Returns:

  • (Float)


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