Get corners of a plane

Hi, I have a plane but i can’t see it, then i want get the corners of the plane, so i can draw a rectangle with this corners.

My code is in c#

Hi @gustavo.uzcategui,
A plane is infinite so it doesn’t really have corners you could get.
You could still create a rectangle with arbitrary width and height

double width = 1000;
double height = 2000;
var rect = new Rectangle3d(myPlane, width, height)