Uses of Class
com.actelion.research.chem.forcefield.mmff.Vector3
-
Packages that use Vector3 Package Description com.actelion.research.chem.forcefield.mmff -
-
Uses of Vector3 in com.actelion.research.chem.forcefield.mmff
Methods in com.actelion.research.chem.forcefield.mmff that return Vector3 Modifier and Type Method Description Vector3
Vector3. add(Vector3 that)
Adds two vectors together by component.Vector3
Vector3. cross(Vector3 that)
Computes the vector cross product between this vector and that vector.static Vector3[]
Sdf. getPositions(java.lang.String sdfpath)
Parses a SDF file to extract the positions of each atom.Vector3
Vector3. negate()
Returns this vector negated (signs swapped).Vector3
Vector3. normalise()
Normalises a vector.Vector3
Vector3. sub(Vector3 that)
Subtracts that vector from this vector by component.Vector3
Vector3. to(Vector3 that)
Returns a vector that points from this vector to that vector.Methods in com.actelion.research.chem.forcefield.mmff with parameters of type Vector3 Modifier and Type Method Description Vector3
Vector3. add(Vector3 that)
Adds two vectors together by component.double
Vector3. angle(Vector3 that)
Returns the angle between this vector and that vector.double
Vector3. cosAngle(Vector3 that)
Returns the cosine of the angle between this vector and that vector.Vector3
Vector3. cross(Vector3 that)
Computes the vector cross product between this vector and that vector.double
Vector3. distance(Vector3 that)
Computes the euclidean distance between two Vector3s.double
Vector3. dot(Vector3 that)
Computes the vector dot product between this vector and that vector.Vector3
Vector3. sub(Vector3 that)
Subtracts that vector from this vector by component.Vector3
Vector3. to(Vector3 that)
Returns a vector that points from this vector to that vector.Constructors in com.actelion.research.chem.forcefield.mmff with parameters of type Vector3 Constructor Description Vector3(Vector3 that)
Copy constructor, copies the x,y,z coordinates from another vector.
-