An instance of data type Vector_d<Kernel> is a vector of Euclidean space in dimension d. A vector r = (r0, ,r d - 1) can be represented in homogeneous coordinates (h0, ,hd) of number type RT, such that ri = hi/hd which is of type FT. We call the ri's the Cartesian coordinates of the vector. The homogenizing coordinate hd is positive.
This data type is meant for use in computational geometry. It realizes free vectors as opposed to position vectors (type Point_d). The main difference between position vectors and free vectors is their behavior under affine transformations, e.g., free vectors are invariant under translations.
| |||||
introduces a variable v
of type Vector_d<Kernel>.
| |||||
| |||||
introduces the zero
vector v of type Vector_d<Kernel> in d-dimensional space.
For the creation flag CGAL::NULL_VECTOR can be used.
| |||||
| |||||
| |||||
introduces a variable
v of type Vector_d<Kernel> in dimension d. If
size [first,last) == d this creates a vector with Cartesian
coordinates set [first,last). If size [first,last) == p+1 the range specifies the homogeneous coordinates H = set [first,last) = ( ± h0, ± h1,
, ± hd) where the
sign chosen is the sign of hd.
| |||||
| |||||
| |||||
introduces a
variable v of type Vector_d<Kernel> in dimension d
initialized to the vector with homogeneous coordinates as defined by
H = set [first,last) and D: ( ± H[0],
± H[1],
, ± H[d-1], ± D). The sign
chosen is the sign of D.
| |||||
| |||||
returns a
variable v of type Vector_d<Kernel> initialized to the i-th
base vector of dimension d.
| |||||
| |||||
introduces a
variable v of type Vector_d<Kernel> in 2-dimensional space.
| |||||
| |||||
introduces a
variable v of type Vector_d<Kernel> in 3-dimensional space.
|
|
| returns the dimension of v. | ||
|
|
returns the i-th Cartesian
coordinate of v.
| ||
|
|
returns the i-th Cartesian
coordinate of v.
| ||
|
|
returns the i-th homogeneous
coordinate of v.
| ||
|
| returns the square of the length of v. | ||
|
| returns an iterator pointing to the zeroth Cartesian coordinate of v. | ||
|
| returns an iterator pointing beyond the last Cartesian coordinate of v. | ||
|
| returns an iterator pointing to the zeroth homogeneous coordinate of v. | ||
|
| returns an iterator pointing beyond the last homogeneous coordinate of v. | ||
|
| returns the direction of v. | ||
|
| |||
returns t(v). |
|
| multiplies all Cartesian coordinates by n. |
|
| multiplies all Cartesian coordinates by r. |
|
| returns the vector with Cartesian coordinates vi/n, 0 ≤ i < d. |
|
| returns the vector with Cartesian coordinates vi/r, 0 ≤ i < d. |
|
| divides all Cartesian coordinates by n. |
|
| divides all Cartesian coordinates by r. |
|
| inner product, i.e., ∑ 0 ≤ i < d vi wi, where vi and wi are the Cartesian coordinates of v and w respectively. |
|
| returns the vector with Cartesian coordinates vi+wi, 0 ≤ i < d. |
|
| addition plus assignment. |
|
| returns the vector with Cartesian coordinates vi-wi, 0 ≤ i < d. |
|
| subtraction plus assignment. |
|
| returns the vector in opposite direction. |
|
| returns true if v is the zero vector. |
|
| returns the vector with Cartesian coordinates n vi. |
|
| returns the vector with Cartesian coordinates r vi, 0 ≤ i < d. |
Vectors are implemented by arrays of variables of type RT. All operations like creation, initialization, tests, vector arithmetic, input and output on a vector v take time O(v.dimension()). coordinate access, dimension() and conversions take constant time. The space requirement of a vector is O(v.dimension()).