CTurtle
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
cturtle::ivec2 Struct Reference

Represents a coordinate pair (e.g, x & y) This class is represented as a low-precision point, because this data type tends to be most easily drawn to a simple canvas. More...

#include <CTurtle.hpp>

Public Member Functions

 ivec2 ()
 Empty constructor. Initializes X and Y to both equal 0.
 
 ivec2 (int x, int y)
 Assignment cons tructor.
 
int & operator[] (int index)
 Array access operator overload. Useful for convenience.
 
int operator[] (int index) const
 Array access operator overload. Useful for convenience.
 
ivec2 operator+ (const ivec2 &other) const
 
ivec2operator+= (const ivec2 &other)
 
ivec2 operator- (const ivec2 &other) const
 
ivec2operator-= (const ivec2 &other)
 
bool operator== (const ivec2 &other) const
 Comparison operator between this vector and the other specified.
 

Public Attributes

union { 
 
   struct { 
 
      int   x 
 
      int   y 
 
   }  
 
   int   data [2] 
 
};  
 

Detailed Description

Represents a coordinate pair (e.g, x & y) This class is represented as a low-precision point, because this data type tends to be most easily drawn to a simple canvas.

Constructor & Destructor Documentation

◆ ivec2()

cturtle::ivec2::ivec2 ( int x,
int y )
inline

Assignment cons tructor.

Parameters
xThe X value of this ivec2.
yThe Y value of this ivec2.

Member Function Documentation

◆ operator[]() [1/2]

int & cturtle::ivec2::operator[] ( int index)
inline

Array access operator overload. Useful for convenience.

Parameters
indexThe index of one of the components of this ivec2 (0..1)
Returns
A reference to the index

◆ operator[]() [2/2]

int cturtle::ivec2::operator[] ( int index) const
inline

Array access operator overload. Useful for convenience.

Parameters
indexThe index of one of the components of this ivec2 (0..1)
Returns
A reference to the index

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