Vector question?
in
Programming Questions
•
3 years ago
Hello,
I am trying to build a wall(plane) from 2 vectors? I know how to do it on the paper but not in processing.
for example:
v1 = t(200,200,0);
v2 = r(200,0,);
you can do it with Determinant or just say t = 1 , r = 1 :
{200,200,0} , {200,0,0} place it : Ax^2 + Bx + c = 0;
A200^2 + 200b = 0 => 200A+b = 0;
200^2A = 0; => A = 0;
b = 0;
so the plane will be (0,0,0).
Now how I build visually this plane?
Thank you.
1