本文整理汇总了C++中MyMesh::Dimensions方法的典型用法代码示例。如果您正苦于以下问题:C++ MyMesh::Dimensions方法的具体用法?C++ MyMesh::Dimensions怎么用?C++ MyMesh::Dimensions使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MyMesh
的用法示例。
在下文中一共展示了MyMesh::Dimensions方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: RotP
#include "MyMesh.h"
#include "QuadMesh.h"
using namespace std;
MyMesh mesh;
QuadMesh Qmesh;
Point *temp;
Point RotP(0,0);
const Point origin(0,0);
int width = 1000;
int height = 1000;
const float PI = 4.0f*atan(1.0f);
const float rate = (2 * PI)/5.0f;
const char *name = "CS200 Assignment 2";
int time_last = time_last = glutGet(GLUT_ELAPSED_TIME);
Affine BigtoWorld = Scale(1.0f/mesh.Dimensions().x, 1.0f/mesh.Dimensions().y)
* Trans(origin - mesh.Center());
// Draws the mesh
void DrawMesh(Mesh *m, const Affine& A, const Hcoords& color)
{
temp = new Point[m->VertexCount()];
//Transform the vertexes of the mesh
for(int i = 0; i < m->VertexCount(); i++)
temp[i] = A * m->GetVertex(i);
glColor3f(color.x, color.y, color.w);
glBegin(GL_TRIANGLES);
for(int i = 0; i < m->FaceCount(); i++)
{