Student[MultivariateCalculus]
GetPoint
obtain an arbitrary point in a line or plane
Calling Sequence
Parameters
Returns
Description
Examples
Compatibility
GetPoint(l)
GetPoint(p)
l
-
Line ; Line defined in Student[MultivariateCalculus]
p
Plane ; Plane defined in Student[MultivariateCalculus]
list ; A point on a line or plane
The GetPoint command returns an arbitrary point on a line or plane.
This command guarantees that the point returned lies on the line or the plane, but it does not guarantee the location of the point relative to the axis, the origin, or any points provided to Line or Plane constructors.
with⁡StudentMultivariateCalculus:
l≔Line⁡1,5,2,3,2,2:
GetPoint⁡l
1,5,2
Contains⁡l,1,5,2
true
The point 24139,−56139,−72139 is a point on the plane p. The graph shows that the point lies on the plane.
p≔Plane⁡3⁢x−7⁢y−9⁢z=8:
pt≔24139,−56139,−72139:
Contains⁡p,pt
pp≔GetPlot⁡Plane⁡3⁢x−7⁢y−9⁢z=8,caption=,shownormal=false,showpoint=false:
pt≔plotspointplot3d⁡pt,symbol=solidcircle,symbolsize=20,color=black:
plotsdisplay⁡pp,pt
The Student[MultivariateCalculus][GetPoint] command was introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
Student[MultivariateCalculus][Line]
Student[MultivariateCalculus][Plane]
Student[MultivariateCalculus][Contains]
plots[pointplot3d]
Download Help Document