Syntax
is_perpendicular(line1, Line2)
Description
Similar to is_orthogonal. Tests whether or not two lines are perpendicular. Returns 1 if they are or 0 if they are not.
Example
is_perpendicular(line(y=x),line(y=-x)) returns 1
is_perpendicular — Discussion