本文整理汇总了C++中Cube::SetOrigin方法的典型用法代码示例。如果您正苦于以下问题:C++ Cube::SetOrigin方法的具体用法?C++ Cube::SetOrigin怎么用?C++ Cube::SetOrigin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cube
的用法示例。
在下文中一共展示了Cube::SetOrigin方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: VBWalkerDraw
DllExport int FAR PASCAL VBWalkerDraw(HDC hDC)
{
int j;
//Cube CubeObject;
RECT r;
VectorType SliceVectorMin, SliceVectorMax;
GetClipBox(hDC, &r);
// Height should be set by drawing program!
CubeObject.Transform.Height = r.bottom - r.top;
CubeObject.SetOrigin( 100, 100, 0);
CubeObject.SetScale( 2, 2 );
// Set the visibe slice through object
SliceVectorMin.x = 0;
SliceVectorMin.y = 0;
SliceVectorMin.z = 0;
SliceVectorMax.x = 11;
SliceVectorMax.y = 5;
SliceVectorMax.z = 4;
// Colour should be set by the drawing program!
// But we don't need to do it here because drawing program has such
// functionality built in.
CubeObject.DrawCreateWalker(3);
CubeObject.SetSliceVector(&SliceVectorMin, &SliceVectorMax);
CubeObject.DrawWalkerhDC(hDC);
CubeObject.DeleteAllCubes();
return j;
}
示例2: VBCubeArrayDraw
DllExport int FAR PASCAL VBCubeArrayDraw(HDC hDC, int N)
{
int j;
//Cube CubeObject;
RECT r;
GetClipBox(hDC, &r);
// Height should be set by drawing program
CubeObject.Transform.Height = r.bottom - r.top;
CubeObject.SetOrigin( 100, 100, 0);
CubeObject.SetScale( 2, 2 );
j=N;
if(j<1)
j=1;
// Colour should be set by the drawing program!
HPEN NewPen = CreatePen(PS_SOLID, 0, RGB(0,0,255)); // create blue pen color
HBRUSH NewBrush = CreateSolidBrush(RGB(255,255,255)); // create brush (white)
HGDIOBJ OldPen = GetCurrentObject(hDC, OBJ_PEN); // remember old colour
HGDIOBJ OldBrush = GetCurrentObject(hDC, OBJ_BRUSH); // remember old brush
// Set colours
SelectObject(hDC, NewPen);
SelectObject(hDC, NewBrush);
CubeObject.DrawNCubehDC(hDC, j);
// Return Colours
SelectObject(hDC, OldPen);
SelectObject(hDC, OldBrush);
// Delete all unnecessary objects
DeleteObject(NewPen);
DeleteObject(NewBrush);
return j;
}
示例3: VBSetOrigin
// Set the origin for drawing on window
DllExport int FAR PASCAL VBSetOrigin( int x, int y, int z )
{
CubeObject.SetOrigin( x, y, z );
return 0;
}