Uses of Class
edu.umd.cfar.lamp.viper.geometry.Component

Packages that use Component
edu.umd.cfar.lamp.viper.geometry A set of classes for manipulating geometric data, usually used for ViPER attribute data
 

Uses of Component in edu.umd.cfar.lamp.viper.geometry
 

Subclasses of Component in edu.umd.cfar.lamp.viper.geometry
 class Pnt
          Represents a 2d point in Rational format.
 

Methods in edu.umd.cfar.lamp.viper.geometry that return Component
 Component Component.set(Component C)
          Sets this component to the given value.
 Component Component.minus(Component C)
          Subtract another Component from this Component.
 Component Component.plus(Component C)
          Add another Component to this.
 

Methods in edu.umd.cfar.lamp.viper.geometry with parameters of type Component
static Rational Util.areaSign(Component a, Component b, Component c)
          Calculates a minus b cross a minus c, or (a-b)x(a-c).
 Component Component.set(Component C)
          Sets this component to the given value.
static Rational Component.dot(Component a, Component b)
          Returns the dot product of the two input vectors.
 Component Component.minus(Component C)
          Subtract another Component from this Component.
 Component Component.plus(Component C)
          Add another Component to this.
 

Constructors in edu.umd.cfar.lamp.viper.geometry with parameters of type Component
Pnt(Component C)
          Constructs a new Pnt with the given coordinates.
Component(Component C)
          Constructs a new Component from the given Component.