Tagged Questions
0
votes
0answers
15 views
Why can we figure out the relationship between a point and a plane by a matrix's determinant? [migrated]
A plane can be taken to be a quadruple(a, b, c, d). Then a point is taken to be a triple of planes(P, Q, R). The point(p, q, r) is valid if and only if the following determinant is non-zero.
|Pa Pb ...
0
votes
2answers
533 views
Projection on a plane using a 2*3 matrix
I can easily draw the projection of a 3D set of points onto the plane with normal vector (1,1,1), by using the matrix
(-sqrt(3)/2 sqrt(3)/2 0)
(-1/2 -1/2 1).
I want to do ...
0
votes
1answer
425 views
Matrix to Represent a Triangle in Screen Space
So i have a set of four points in 3D Space.
P1 [0, 0, 0]
P2 [128, 0, 0]
P3 [0, 128, 0]
P4 [128, 128, 0]
Which I'm then projecting orthographically to the screen effectively giving me two ...