Uses of Class
org.ode4j.math.DMatrix3.DVector3ColView

Packages that use DMatrix3.DVector3ColView
org.ode4j.math   
 

Uses of DMatrix3.DVector3ColView in org.ode4j.math
 

Methods in org.ode4j.math that return DMatrix3.DVector3ColView
 DMatrix3.DVector3ColView DMatrix3C.viewCol(int _col)
           
 DMatrix3.DVector3ColView DMatrix3.viewCol(int column)
          View a particular column as dVector3.
 

Methods in org.ode4j.math with parameters of type DMatrix3.DVector3ColView
 DVector3 DVector3.eqSum(DMatrix3.DVector3ColView v2, double s2, DMatrix3.DVector3ColView v3, double s3)
          Convenience function that performs: this = v2*s2 + v3*s3
 DVector3 DVector3.eqSum(DMatrix3.DVector3ColView v2, double s2, DVector3C v3, double s3)
          Convenience function that performs: this = v2*s2 + v3*s3
 DVector3 DVector3.eqSum(DVector3C v2, DMatrix3.DVector3ColView v3, double s3)
          Convenience function that performs: this = v2 + v3*s3
 DVector3 DVector3.set(DMatrix3.DVector3ColView v2)