Gibt den point in der Mitte zwischen P1 und P2.
midPoint ( p1 As Point, _
p2 As Point ) As Point
Argument | Typ | Beschreibung |
---|---|---|
p1 | Point | Ersten point . |
p2 | Point | Zweite point . |
Intent >midPoint(point(0,0,0), point(1,0,0))
--> Point_(0.5, 0.0, 0.0, WorldFrame())
Intent >midPoint(point(0,0,0), point(0,0,0))
--> Point_(0.0, 0.0, 0.0, WorldFrame())
Koinzident
points
nicht, wird eine Fehlermeldung angezeigt.