Script
Public Slots | Public Member Functions | Properties | List of all members
Point2d Class Reference

#include <math.h>

Inheritance diagram for Point2d:
Inheritance graph
[legend]
Collaboration diagram for Point2d:
Collaboration graph
[legend]

Public Slots

void setXY (double, double)
 Set the value of x, y coordinate.
 
Point2dround ()
 round x and y to floor with a resolution of 1.0/64.0
 
Point2dround (double quantum)
 round x and y to floor with a resolution given
 
Point2dround (Vector2d v)
 Rounds this point in the direction of the given vector and using the resolution of 1.0/64.0.
 
Point2dround (Vector2d v, double quantum)
 Rounds this point in the direction of the given vector and using the given resolution.
 
Vector2d toVector2d ()
 Copy Point2d into a Vector2d container.
 
double distance (Point2d p2)
 Calculate distance between two points.
 
double distanceSq (Point2d p2)
 Calculate square distance between two points.
 
Vector2d minus (Point2d p2)
 Substracts current Point2d with specified Point2d.
 
Point2d minus (Vector2d v)
 Substracts current Point2d with specified Vector2d.
 
Point2d add (Vector2d v)
 Add specified Vector2d to current Point2d.
 
Point2daddEq (Vector2d v)
 Add specified Vector2d to current Point2d.
 
Point2dminusEq (Vector2d v)
 Substract current Point2d with specified Vector2d.
 
Point2dinterpolate (double t, Point2d p1, Point2d p2)
 Calculate Point2d as interpolation between two points.
 

Public Member Functions

 Point2d ()
 Create a new empty Point2d.
 
 Point2d (double x, double y)
 Create a new Point2d.
 

Properties

double x
 x value
 
double y
 y value
 

Detailed Description

The Point2d class defines a bi-dimensional point container. Point2d objects can be instantiated in the scripting environment.

You can use it in both Script Editor and scriptModule.

Constructor & Destructor Documentation

Point2d::Point2d ( )

Create a new empty Point2d.

Point2d::Point2d ( double  x,
double  y 
)

Create a new Point2d.

Parameters
xX value
yY value

Member Function Documentation

Point2d Point2d::add ( Vector2d  v)
slot

Add specified Vector2d to current Point2d.

Parameters
vVector2d
Returns
New Point2d containing result
Point2d& Point2d::addEq ( Vector2d  v)
slot

Add specified Vector2d to current Point2d.

Parameters
vVector2d
Returns
Point2d reference
double Point2d::distance ( Point2d  p2)
slot

Calculate distance between two points.

Parameters
p2Second Point2d
Returns
Distance between current Point2d and p2
double Point2d::distanceSq ( Point2d  p2)
slot

Calculate square distance between two points.

Parameters
p2Second Point2d
Returns
Square distance between current Point2d and p2
Point2d& Point2d::interpolate ( double  t,
Point2d  p1,
Point2d  p2 
)
slot

Calculate Point2d as interpolation between two points.

Parameters
tFactor of interpolation [ 0, 1 ]
p1First Point2d
p2Second Point2d
Returns
Point2d reference
Vector2d Point2d::minus ( Point2d  p2)
slot

Substracts current Point2d with specified Point2d.

Parameters
p2Second Point2d
Returns
New Point2d containing result
Point2d Point2d::minus ( Vector2d  v)
slot

Substracts current Point2d with specified Vector2d.

Parameters
vVector2d
Returns
New Point2d containing result
Point2d& Point2d::minusEq ( Vector2d  v)
slot

Substract current Point2d with specified Vector2d.

Parameters
vVector2d
Returns
Point2d reference
Point2d& Point2d::round ( )
slot

round x and y to floor with a resolution of 1.0/64.0

Point2d& Point2d::round ( double  quantum)
slot

round x and y to floor with a resolution given

Point2d& Point2d::round ( Vector2d  v)
slot

Rounds this point in the direction of the given vector and using the resolution of 1.0/64.0.

Point2d& Point2d::round ( Vector2d  v,
double  quantum 
)
slot

Rounds this point in the direction of the given vector and using the given resolution.

void Point2d::setXY ( double  ,
double   
)
slot

Set the value of x, y coordinate.

Vector2d Point2d::toVector2d ( )
slot

Copy Point2d into a Vector2d container.

Returns
Vector2d

Property Documentation

double Point2d::x
readwrite

x value

double Point2d::y
readwrite

y value


The documentation for this class was generated from the following file: