OpenGL ES 打造一个三阶魔方(一)

万丈高楼平地起,为了完成一个三阶魔方,本篇文章先达成一个小目标:打造一个一阶魔方。一阶魔方是什么鬼(其实我也想笑,实际上谁会去玩一个一阶的魔方)?对啰,就是一个正方体。把玩魔方时需要观察各个面,所以需要有个旋转魔方的功能,这次我们就做一个可以通过滑动手势全方位旋转的一阶魔方

效果动图.gif

静态的正方体

我们使用GLKit绘制一个正方体,GLKit是对OpenGL ES 的封装,内部帮我们做了很多事情,可以简化编程。我们知道,正方体有6个面,8个顶点。
定义数组:

static GLKVector3 vertices[8];
static GLKVector4 colors[6];
static GLKVector3 triangleVertices[36];
static GLKVector4 triangleColors[36];

初始化数据:

vertices[0] = GLKVector3Make(-0.5, -0.5,  0.5); // Left  bottom front
vertices[1] = GLKVector3Make( 0.5, -0.5,  0.5); // Right bottom front
vertices[2] = GLKVector3Make( 0.5,  0.5,  0.5); // Right top    front
vertices[3] = GLKVector3Make(-0.5,  0.5,  0.5); // Left  top    front
vertices[4] = GLKVector3Make(-0.5, -0.5, -0.5); // Left  bottom back
vertices[5] = GLKVector3Make( 0.5, -0.5, -0.5); // Right bottom back
vertices[6] = GLKVector3Make( 0.5,  0.5, -0.5); // Right top    back
vertices[7] = GLKVector3Make(-0.5,  0.5, -0.5); // Left  top    back

colors[0] = GLKVector4Make(0.000, 0.586, 1.000, 1.000); //  湖蓝
colors[1] = GLKVector4Make(1.0, 0.0, 0.0, 1.0); // 红
colors[2] = GLKVector4Make(0.119, 0.519, 0.142, 1.000); //  暗绿
colors[3] = GLKVector4Make(1.000, 0.652, 0.000, 1.000); // 橙
colors[4] = GLKVector4Make(1.000, 1.000, 0.000, 1.000); // 黄
colors[5] = GLKVector4Make(1.0, 1.0, 1.0, 1.0); // 白

//每个面需要6个点描述(2个三角形拼合而成),显然有些点是共用的,采用顶点索引,对应8个顶点
int vertexIndices[36] = {
  // Front
  0, 1, 2,
  0, 2, 3,
  // Right
  1, 5, 6,
  1, 6, 2,
  // Back
  5, 4, 7,
  5, 7, 6,
  // Left
  4, 0, 3,
  4, 3, 7,
  // Top
  3, 2, 6,
  3, 6, 7,
  // Bottom
  4, 5, 1,
  4, 1, 0,
};

for (int i = 0; i < 36; i++) {
    triangleVertices[i] = vertices[vertexIndices[i]];
    triangleColors[i] = colors[i/6];
}

屏幕绘制

-(void)update{
    CGSize size = self.view.bounds.size;
    float aspect = fabs(size.width/size.height);
    GLKMatrix4 projectionMatrix = GLKMatrix4MakePerspective(GLKMathDegreesToRadians(65), aspect, 0.5, 15);
    GLKMatrix4 modelviewMatricx = GLKMatrix4Translate(GLKMatrix4Identity, 0,0, -3);
    
    modelviewMatricx = GLKMatrix4Multiply(modelviewMatricx,_rotateMatrix4);
    self.cube.effect.transform.modelviewMatrix = modelviewMatricx;
    self.cube.effect.transform.projectionMatrix = projectionMatrix;
}

- (void)draw {
  [effect prepareToDraw];
  
  glEnable(GL_DEPTH_TEST);
  glEnable(GL_CULL_FACE);
  
  glEnableVertexAttribArray(GLKVertexAttribPosition);
  glVertexAttribPointer(GLKVertexAttribPosition, 3, GL_FLOAT, GL_FALSE, 0, triangleVertices);
  
  glEnableVertexAttribArray(GLKVertexAttribColor);
  glVertexAttribPointer(GLKVertexAttribColor, 4, GL_FLOAT, GL_FALSE, 0, triangleColors);
  
  glDrawArrays(GL_TRIANGLES, 0, 36);
  
  glDisableVertexAttribArray(GLKVertexAttribPosition);
  glDisableVertexAttribArray(GLKVertexAttribColor);
}

手势操作旋转立方体

功能描述:
通过触摸手势操作,实现全方位旋转。
思路:
构建一个三维球空间,通过屏幕的二维触摸轨迹模拟三维的球平面的滑动轨迹。

数学建模,如下图所示:

旋转球空间模型.png

假设屏幕触摸点为B,我们将其对应为球面上的点A,OB为OA在xy平面上的投影。不难看出二维与三维的映射关系。
令A点坐标为(a,b,c),B点坐标(a,b),OA长度为R, 则有 a^2 + b^2 + c^2 = R^2
根据时间片内手指滑动的方向求出球旋转的轴向量。

二维OB向量转为三维OA向量的算法:

 _ball.radius=170;
 _ball.origin=GLKVector3Make(0, 0, 0);
//二维OB向量转为三维OA向量的算法
-(GLKVector3)touchPointVector3FromVector2: (GLKVector2)vector2 {
    GLfloat x,y,z;
    x=vector2.x;
    y=-vector2.y;
   GLfloat safeRadius = _ball.radius-1;
// 超出圆形区域的处理
    if(safeRadius < GLKVector2Length(vector2)) {
        float theta = atan2f(y, x);
        x = safeRadius * cosf(theta);
        y = safeRadius * sinf(theta);
    }
    z = sqrtf(square(_ball.radius) - square(x) - square(y));
    GLKVector3 v=GLKVector3Make(x,y,z);
    return GLKVector3MultiplyScalar( GLKVector3Normalize(v),  _ball.radius) ;
}

函数说明:GLKVector3MultiplyScalar
返回通过将向量的每个分量乘以标量值创建的新向量。

手指滑动过程中的旋转矩阵:

_oldMatria4=GLKMatrix4Identity;
-(GLKMatrix4)touchMoveAtX:(GLfloat)x AtY:(GLfloat)y{
    isMoved=YES;
    GLKVector3 movePoint= [self touchPointVector3FromVector2:GLKVector2Make(x-screenW*0.5, y-screenH*0.5)];
    
    return GLKMatrix4Multiply(GLKMatrix4RotateWithVector3(GLKMatrix4Identity,
                                       acosf(GLKVector3DotProduct(movePoint,_touchPoint)/(GLKVector3Length(movePoint)*GLKVector3Length(_touchPoint))),
                                        GLKVector3CrossProduct( _touchPoint,movePoint))
                              ,_oldMatria4);
}

函数说明:
GLKVector3DotProduct
返回两个向量的点积。
GLKVector3CrossProduct
返回两个向量的交叉乘积。
GLKMatrix4 GLKMatrix4RotateWithVector3(GLKMatrix4 matrix, float radians, GLKVector3 axisVector)
矩阵matrix绕axisVector向量旋转radians,返回新矩阵。

#pragma mark 触屏处理
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    UITouch *touch = [touches anyObject];
    CGPoint touchPoint = [touch locationInView:self.view];
    _tapCount=[touch tapCount];
    if (_tapCount == 2) {

    }else if (_tapCount == 1){
    [self.trackBall touchDownAtX:touchPoint.x AtY:touchPoint.y];
    }
}

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
    UITouch *touch = [touches anyObject];
    CGPoint point = [touch locationInView:self.view];
 if (_tapCount == 1){
     [self.trackBall touchUpAtX:point.x AtY:point.y];
     self.cube.effect.transform.modelviewMatrix = _rotateMatrix4;
 }
}

- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
    UITouch *touch = [touches anyObject];
    CGPoint point = [touch locationInView:self.view];
    if (_tapCount == 2) {

    }else if (_tapCount == 1){
    _rotateMatrix4 = [self.trackBall touchMoveAtX:point.x AtY:point.y];
    self.cube.effect.transform.modelviewMatrix = _rotateMatrix4;
    }
}

本文demo源码 传送门

参考

GLKVector3参考
进入 3D 世界,从正方体开始

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,013评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,205评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,370评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,168评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,153评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,954评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,271评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,916评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,382评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,877评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,989评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,624评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,209评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,199评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,418评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,401评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,700评论 2 345

推荐阅读更多精彩内容