Comandos

Comandos

  • Points and vectors Puntos y vectores
    • A=(1,5,3) creates the 3D point of coordinates x=1, y=5, z=3 A = (1,5,3), se crea el punto de coordenadas 3D x = 1, y = 5, z = 3
    • u=(1,5,3) creates the 3D vector of coordinates x=1, y=5, z=3 u = (1,5,3), se crea el vector 3D de las coordenadas x = 1, y = 5, z = 3
    • Vector[A,B], A+3*B, A+u, (A+B)/2, etc. works the same as in 2D Vector [A, B], A +3 * B, A + U, (A + B) / 2, etc funciona igual que en 2D

  • Lines Líneas
    • Line[A,B], Segment[A,B], etc. same as in 2D Línea [a, b], Segmento [A, B], etc igual que en 2D

  • Planes Aviones
    • Plane[A,B,C] creates the plane through the 3D points A, B, C Plano [A, B, C] crea el plano que pasa por el 3D los puntos A, B, C
    • Plane[A,l] creates the plane through the 3D point A and the 3D line l Plano [A] l crea el plano que pasa por el punto A y 3D l la línea 3D
    • Plane[A,p] creates the plane through the 3D point A and parallel to the plane p Plano [A, p] crea el plano que pasa por el punto A y 3D paralelo al plano p
    • PerpendicularPlane[A,l] creates the plane through the 3D point A and perpendicular to the 3D line l PerpendicularPlane [A] l crea el plano que pasa por el punto 3D l A y perpendicular a la línea 3D

  • Spheres Esferas
    • Sphere[A,r] creates a sphere with center A and radius r Esfera [A, r] crea una esfera con centro A y radio r
    • Sphere[A,B] creates a sphere with center A and through point B Esfera [A, B] crea una esfera con un punto central ya través de B

  • Polyhedrons Poliedros
    • Pyramid[A1,A2,...,An] : pyramid with base (A1,...,A(n-1)) and apex An Pyramid [A1, A2 ,..., Un]: pirámide con base (A1 ,..., A (n-1)) y el ápice un
    • Prism[A1,A2,...,An,B1] : prism with base (A1,...,An) and (B1,...,Bn), where B2, ..., Bn are the translation of A2, ..., An, as B1 is from A1. Prisma [A1, A2 ,..., An, B1]: prisma con base (A1 ,..., An) y (B1 ,..., Bn), donde B2, ..., Bn son la traducción de A2, ..., An, como B1 es de A1.

Last modified: Monday, 23 August 2010, 1:18 AM