本文整理汇总了C++中Voxel::SetLocation方法的典型用法代码示例。如果您正苦于以下问题:C++ Voxel::SetLocation方法的具体用法?C++ Voxel::SetLocation怎么用?C++ Voxel::SetLocation使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Voxel
的用法示例。
在下文中一共展示了Voxel::SetLocation方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Set
void AbstractPiece::Set(unsigned int col, unsigned int row, unsigned int dep, bool flag) {
if (!Validate(col, row, dep))
return;
Voxel* v = 0;
if (flag) {
v = new Voxel();
VoxelColour colour;
colour.alpha = 1.0;
colour.red = 0.0;
colour.green = 0.0;
colour.blue = 1.0;
v->SetColour(colour);
VoxelLocation location;
location.col = col;
location.row = row;
location.dep = dep;
v->SetLocation(location);
VoxelDrawPosition position;
position.x = 0.0;
position.y = 0.0;
position.z = 0.0;
v->SetPosition(position);
}
Set(col, row, dep, v);
}