class Google::Apis::PolyV1::FormatComplexity
Information on the complexity of this Format
.
Attributes
lod_hint[RW]
A non-negative integer that represents the level of detail (LOD) of this format relative to other formats of the same asset with the same format_type. This hint allows you to sort formats from the most-detailed (0) to least- detailed (integers greater than 0). Corresponds to the JSON property `lodHint` @return [Fixnum]
triangle_count[RW]
The estimated number of triangles. Corresponds to the JSON property `triangleCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/poly_v1/classes.rb, line 267 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/poly_v1/classes.rb, line 272 def update!(**args) @lod_hint = args[:lod_hint] if args.key?(:lod_hint) @triangle_count = args[:triangle_count] if args.key?(:triangle_count) end