pt method

Vector3 pt(
  1. dynamic x,
  2. dynamic y
)

point from x and y

Implementation

Vector3 pt(x, y){
  return Vector3(x,y,0);
}