Point

This method is used to create points and vectors.

In Lua programming, you can normally define points and vectors as shown below:

c={x=10, y=20 , z=30}

Point is a simpler method we use in MANUSpost developer. Instead of using Lua standard form, you can define points and vectors as shown below:

c=Point(10,20,30)