This repository was archived by the owner on Apr 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
ThreeD
Stephen S. Mitchell edited this page Apr 25, 2026
·
4 revisions
- Namespace:
AlibreScript.API - Kind:
Class
Gets a vector that is perpendicular to a vector
def GetPerpendicularVector(vector):
"""
Gets a vector that is perpendicular to a vector
Args:
vector (list): Vector [X, Y, Z]
Returns:
Vector that is perpendicular [X, Y, Z]
"""Transforms a point based on two vectors
def TransformPointUsingVectors(source_vector, destination_vector, point):
"""
Transforms a point based on two vectors
Args:
source_vector (list): Source vector [X, Y, Z]
destination_vector (list): Destination vector [X, Y, Z]
point (list): Point to transform [X, Y, Z]
Returns:
Transformed point [X, Y, Z]
"""Documentation Home | Classes | Methods Index | Properties Index | Members Index
Generated on 2025-09-23 02:06