Question: How can get a point M(x,y,z) in side the triangle TAD?

I have triangle TAD. Now I want to take any point inside the triagle TAD. How can I take it? I tried
 

restart; 
with(Student:-MultivariateCalculus); 
A := [1, 2, 3]; 
DD := [-2, 1, 0]; 
T := [1/2, 1/2, 3/2]; 
P := Plane(T, A, DD); 
GetRepresentation(P)

I got the quation of the plane TAD is
 

-3*x-3*y+4*z = 3

With the point P(x,y,z). What is the condition of x, y, z?

Please Wait...