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