Ejemplo n.º 1
0
bool Voxel::operator<=(const Voxel &other) const
{
	return getValue() <= other.getValue();
};
Ejemplo n.º 2
0
bool Voxel::operator==(const Voxel &other) const
{
	return (getValue() == other.getValue());
};
Ejemplo n.º 3
0
bool Voxel::operator>(const Voxel &other) const
{
	return getValue() > other.getValue();
};
Ejemplo n.º 4
0
Voxel::Voxel(const Voxel &other)
{
	setValue(other.getValue());
}