How to find a vector normal to given vector?

Hi all,
I have a vector with me,I want to find another vector which is normal to the vector that I have with me.
Can it be achieved using any nodes/python or Revit api?.

do you mean the normal to a plane ??
There are an infinite number of vectors normal to a particular vector (think spokes of a wheel, if the first vector is the axle)

1 Like

image

this?

1 Like

There are two factors in Vector which are Direction and Length.
If you want to compare Direction only, you can do it after using Vector.Normalized which makes length of any vector as 1(same length).
If you want to find the opposite vector, use Vector.Reverse.

1 Like