Uses of Class
Renderer.Dimensions

Packages that use Dimensions
Reasoner   
Renderer   
 

Uses of Dimensions in Reasoner
 

Fields in Reasoner declared as Dimensions
private  Dimensions ObjectInference.m_dimensions
           
 Dimensions ObjectInference.VarianceWrapper.dimensions_variance
           
 

Methods in Reasoner that return Dimensions
private  Dimensions SimulationEngine.computeDimensions(ObjectTemplate object_template, boolean force_determinism)
          Returns the randomly selected dimensions based on the definition of their plausibility intervals and associated attribute interval node in an object template.
private  Dimensions SimulationEngine.computeProportionedDimensions(ObjectTemplate object_template, double height, double width, double depth)
          Returns the dimensions proportioned such that a change in one dimension affects the other two dimensions.
 Dimensions ObjectInference.getDimensions()
          Returns the dimensions component of this inference.
 

Methods in Reasoner with parameters of type Dimensions
 void ObjectInference.setVariance(Position position_variance, Dimensions dimensions_variance, Attitude attitude_variance)
          Sets the variance of the position, dimensions, and attitude of this object inference.
 

Constructors in Reasoner with parameters of type Dimensions
ObjectInference(ObjectTemplate object_template, Position position, Dimensions dimensions, Attitude attitude, RegionSet region_set)
          Creates a new inference for a single object produced by the Reasoner.
 

Uses of Dimensions in Renderer
 

Fields in Renderer declared as Dimensions
private  Dimensions Toy.m_dimensions
           
private  Dimensions SandboxController.m_screen_dimensions
           
protected  Dimensions ModelTemplate.dimensions_base
           
 

Methods in Renderer that return Dimensions
 Dimensions Toy.getDimensions()
          Returns the dimensions of this toy.
 Dimensions Dimensions.divide(int divisor)
          Returns a dimensions set with height, width, and depth divided.
 Dimensions Dimensions.getClone()
          Returns a clone of this object.
 

Methods in Renderer with parameters of type Dimensions
 void Dimensions.add(Dimensions dimensions)
          Adds two dimension sets.
 float Dimensions.getMaxDelta(Dimensions dimensions)
          Returns the value of height, width, or depth that differs most between two dimension sets.
 boolean Dimensions.isEqual(Dimensions dimensions, float tolerance)
          Returns whether two dimensions are equal within a tolerance.
 void Dimensions.set(Dimensions dimensions)
          Sets or resets the dimensions.
 void Dimensions.subtract(Dimensions dimensions)
          Subtracts two dimension sets.
 

Constructors in Renderer with parameters of type Dimensions
Dimensions(Dimensions dimensions)
          Creates a dimension set with the given values.