The Visual Module of VPython - Reference Manual
Date de publication : 4 février 2009
Vector operations
Vector operations
The vector Object
The vector object is not a displayable object but is a powerful aid to 3D computations. Its properties are similar to vectors
used in science and engineering. It can be used together with Numeric arrays. (Numeric is a module added to Python to provide
high-speed computational capability through optimized array processing. The Numeric module is imported automatically by Visual.)
Returns a vector object with the given components, which are made to be floating-point (that is, 3 is converted to 3.0).
Vectors can be added or subtracted from each other, or multiplied by an ordinary number. For example,
v1 = vector (1 ,2 ,3 )
v2 = vector (10 ,20 ,30 )
print v1+ v2
print 2 * v1
|
You can refer to individual components of a vector:
v2.x is 10, v2.y is 20, v2.z is 30
It is okay to make a vector from a vector: vector(v2) is still vector(10,20,30).
The form vector(10,12) is shorthand for vector(10,12,0).
A vector is a Python sequence, so v2.x is the same as v2[0], v2.y is the same as v2[1], and v2.z is the same as v2[2].
mag ( vector )
mag (vector (1 ,1 ,1 ))
mag2 (vector (1 ,1 ,1 ))
|
You can also obtain the magnitude in the form v2.mag and the square of the magnitude as v2.mag2.
It is possible to reset the magnitude or the magnitude squared of a vector:
You can reset the magnitude to 1 with norm():
norm ( vector )
norm (vector (1 ,1 ,1 )) equals vector (1 ,1 ,1 )/ sqrt (3 )
|
You can also write v1.norm(). For convenience, norm(vector(0,0,0)) is calculated to be vector(0,0,0).
To calculate the angle between two vectors (the "difference" of the angles of the two vectors).
You can also write v1.diff_angle(v1,v2). For convenience, if either of the vectors has zero magnitude, the
difference of the angles is calculated to be zero.
There is a function for the cross product of two vectors, which is a vector perpendicular to the plane defined by vector1 and
vector2, in a direction defined by the right-hand rule: if the fingers of the right hand bend from vector1 toward vector 2,
the thumb points in the direction of the cross product. The magnitude of this vector is equal to the product of the magnitudes
of vector1 and vector2, times the sine of the angle between the two vectors.
cross ( vector1, vector2 )
|
There is a function for the dot product of two vectors, which is an ordinary number equal to the product of the magnitudes
of vector1 and vector2, times the cosine of the angle between the two vectors. If the two vectors are normalized, the
dot product gives the cosine of the angle between the vectors, which is often useful.
You can also say vector1.cross(vector2) or vector1.dot(vector2)).
Rotating a vector
There is a function for rotating a vector:
v2 = rotate (v1, angle= theta, axis= (1 ,1 ,1 ))
|
The default axis is (0,0,1), for a rotation in the xy plane around the z axis. There is no origin for rotating a vector.
You can also write
v2 = v1.rotate(angle=theta, axis=(1,1,1)). There is also a
rotate capability for objects.
Convenient conversion
For convenience Visual automatically converts (a,b,c) into vector(a,b,c), with floating-point values, when creating Visual
objects: sphere.pos=(1,2,3) is equivalent to sphere.pos=vector(1.,2.,3.). However, using the form (a,b,c) directly in vector
computations will give errors, because (a,b,c) isn't a vector; write vector(a,b,c) instead.
You can convert a vector
vec1 to a Python tuple (a,b,c) by
tuple(vec1) or by the much faster option
vec1.astuple().