11        this->
A + indexGroup.
A,
 
   12        this->
B + indexGroup.
B,
 
   13        this->
C + indexGroup.
C 
 
   19        this->
A - indexGroup.
A,
 
   20        this->
B - indexGroup.
B,
 
   21        this->
C - indexGroup.
C 
 
   27        this->
A * indexGroup.
A,
 
   28        this->
B * indexGroup.
B,
 
   29        this->
C * indexGroup.
C 
 
   35        this->
A / indexGroup.
A,
 
   36        this->
B / indexGroup.
B,
 
   37        this->
C / indexGroup.
C 
 
   42    return "[" + String(
A) + 
", " + String(
B) + 
", " + String(
C) + 
"]";
 
 
Defines the IndexGroup class for handling a group of three unsigned integer indices.
 
Represents a group of three unsigned integer indices.
 
String ToString()
Converts the IndexGroup to a string representation.
 
IndexGroup Divide(IndexGroup indexGroup)
Divides two IndexGroup objects component-wise.
 
unsigned int C
Third index in the group.
 
IndexGroup Subtract(IndexGroup indexGroup)
Subtracts two IndexGroup objects component-wise.
 
IndexGroup Add(IndexGroup indexGroup)
Adds two IndexGroup objects component-wise.
 
unsigned int A
First index in the group.
 
IndexGroup Multiply(IndexGroup indexGroup)
Multiplies two IndexGroup objects component-wise.
 
IndexGroup()
Default constructor.
 
unsigned int B
Second index in the group.