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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Quaternion

Returns a new instance of Quaternion



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

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#wFloat

The scalar component. Corresponds to the JSON property w

Returns:

  • (Float)


494
495
496
# File 'generated/google/apis/poly_v1/classes.rb', line 494

def w
  @w
end

#xFloat

The x component. Corresponds to the JSON property x

Returns:

  • (Float)


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

def x
  @x
end

#yFloat

The y component. Corresponds to the JSON property y

Returns:

  • (Float)


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

def y
  @y
end

#zFloat

The z component. Corresponds to the JSON property z

Returns:

  • (Float)


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

def z
  @z
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



516
517
518
519
520
521
# File 'generated/google/apis/poly_v1/classes.rb', line 516

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