geo_convert_plane_coord_to_param | R Documentation |
Get parametric function for a plane with the parameter s,t:
\vec x = \vec p + s \cdot \vec u + t \cdot \vec v
The function returns a position vector
\vec p
, and two directions vectors
\vec u, \vec v
. The Vector
\vec p
is also the normal vector (perpendicular to the plane).
geo_convert_plane_coord_to_param(E, axis = c("x", "y", "z"))
E |
Plane equation (Ryacas) |
axis |
character vector indentifiying the axis variables e.g. c("x1","x2","x3") |
The coordinate form of the plane is:
a x + b y + c z - d = 0
where
d = \vec p \cdot \vec n
and
\vec n = \begin{pmatrix} a \\ b \\ c \end{pmatrix}
https://de.wikipedia.org/wiki/Ebenengleichung#Normalenform https://en.wikipedia.org/wiki/Euclidean_planes_in_three-dimensional_space
list with matrix containing the Vectors
\vec p, \vec u, \vec v
and
\vec n = \begin{pmatrix} a \\ b \\ c \end{pmatrix},-d
Florian Wagner florian.wagner@wagnius.ch
geo_convert_plane_coord_to_param("10*x+15*y+20*z+50")
geo_convert_plane_coord_to_param("-10*x+15*y+20*z+50")
geo_convert_plane_coord_to_param("10*x-15*y+20*z+50")
geo_convert_plane_coord_to_param("10*x+15*y-20*z+50")
geo_convert_plane_coord_to_param("10*x+15*y+20*z-50")
geo_convert_plane_coord_to_param("-10*x-15*y+20*z+50")
geo_convert_plane_coord_to_param("10*x-15*y-20*z+50")
geo_convert_plane_coord_to_param("-10*x+15*y-20*z+50")
geo_convert_plane_coord_to_param("-10*x-15*y+20*z-50")
geo_convert_plane_coord_to_param("10*x-15*y-20*z-50")
geo_convert_plane_coord_to_param("-10*x+15*y-20*z-50")
geo_convert_plane_coord_to_param("10*x+15*y+50")
geo_convert_plane_coord_to_param("10*x+15*z+50")
geo_convert_plane_coord_to_param("10*y+15*z+50")
geo_convert_plane_coord_to_param("10*x+15*y-50")
geo_convert_plane_coord_to_param("10*x+15*z-50")
geo_convert_plane_coord_to_param("10*y+15*z-50")
geo_convert_plane_coord_to_param("-10*x+15*y+50")
geo_convert_plane_coord_to_param("-10*x+15*z+50")
geo_convert_plane_coord_to_param("-10*y+15*z+50")
geo_convert_plane_coord_to_param("10*x-15*y+50")
geo_convert_plane_coord_to_param("10*x-15*z+50")
geo_convert_plane_coord_to_param("10*y-15*z+50")
geo_convert_plane_coord_to_param("-10*z-50")
geo_convert_plane_coord_to_param("-10*y-50")
geo_convert_plane_coord_to_param("-10*x-50")
geo_convert_plane_coord_to_param("-10*z+50")
geo_convert_plane_coord_to_param("-10*y+50")
geo_convert_plane_coord_to_param("-10*x+50")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.