class Google::Apis::VectortileV1::Vertex3DList

3D vertex list used for modeled volumes. Each entry represents an offset from the previous one in local tile coordinates. The first coordinate is offset from (0, 0, 0).

Attributes

x_offsets[RW]

List of x-offsets in local tile coordinates. Corresponds to the JSON property `xOffsets` @return [Array<Fixnum>]

y_offsets[RW]

List of y-offsets in local tile coordinates. Corresponds to the JSON property `yOffsets` @return [Array<Fixnum>]

z_offsets[RW]

List of z-offsets in local tile coordinates. Corresponds to the JSON property `zOffsets` @return [Array<Fixnum>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/vectortile_v1/classes.rb, line 848
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/vectortile_v1/classes.rb, line 853
def update!(**args)
  @x_offsets = args[:x_offsets] if args.key?(:x_offsets)
  @y_offsets = args[:y_offsets] if args.key?(:y_offsets)
  @z_offsets = args[:z_offsets] if args.key?(:z_offsets)
end