Home | History | Annotate | Download | only in geometry

Lines Matching defs:vector

31  * Formats a 3D vector in components list format "{x; y; z}".
37 * " { 1 ; 1 ; 1 } " will be parsed without error and the same vector will be
128 * @return available 3D vector format locales.
167 * Returns the default 3D vector format for the current locale.
168 * @return the default 3D vector format.
175 * Returns the default 3D vector format for the given locale.
177 * @return the 3D vector format specific to the given locale.
188 * @return A formatted vector
196 * @param vector the object to format.
202 public StringBuffer format(Vector3D vector, StringBuffer toAppendTo,
212 formatDouble(vector.getX(), format, toAppendTo, pos);
214 formatDouble(vector.getY(), format, toAppendTo, pos);
216 formatDouble(vector.getZ(), format, toAppendTo, pos);