Project

General

Profile

Download (4.02 KB) Statistics
| Branch: | Revision:

library / src / main / java / org / distorted / library / effect / MatrixEffectRotate.java @ c1fa9e3c

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
5
//                                                                                               //
6
// Distorted is free software: you can redistribute it and/or modify                             //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Distorted is distributed in the hope that it will be useful,                                  //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Distorted.  If not, see <http://www.gnu.org/licenses/>.                            //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.library.effect;
21

    
22
import android.opengl.Matrix;
23

    
24
import org.distorted.library.type.Data1D;
25
import org.distorted.library.type.Data3D;
26

    
27
///////////////////////////////////////////////////////////////////////////////////////////////////
28
/**
29
 * Rotate the Mesh by 'angle' degrees around the center, along an axis.
30
 */
31
public class MatrixEffectRotate extends MatrixEffect
32
  {
33
  private Data1D mAngle;
34
  private Data3D mAxis, mCenter;
35

    
36
///////////////////////////////////////////////////////////////////////////////////////////////////
37
/**
38
 * Only for use by the library itself.
39
 *
40
 * @y.exclude
41
 */
42
  public boolean compute(float[] uniforms, int index, long currentDuration, long step )
43
    {
44
    mCenter.get(uniforms,index+CENTER_OFFSET,currentDuration,step);
45
    mAxis.get(uniforms,index+1,currentDuration,step);
46
    return mAngle.get(uniforms,index,currentDuration,step);
47
    }
48

    
49
///////////////////////////////////////////////////////////////////////////////////////////////////
50
/**
51
 * Only for use by the library itself.
52
 *
53
 * @y.exclude
54
 */
55
  public void apply(float[] matrix, float[] uniforms, int index)
56
    {
57
    float angle = uniforms[NUM_UNIFORMS*index  ];
58
    float axisX = uniforms[NUM_UNIFORMS*index+1];
59
    float axisY = uniforms[NUM_UNIFORMS*index+2];
60
    float axisZ = uniforms[NUM_UNIFORMS*index+3];
61

    
62
    float x = uniforms[NUM_UNIFORMS*index+CENTER_OFFSET  ];
63
    float y = uniforms[NUM_UNIFORMS*index+CENTER_OFFSET+1];
64
    float z = uniforms[NUM_UNIFORMS*index+CENTER_OFFSET+2];
65

    
66
    Matrix.translateM(matrix, 0, x, y, z);
67
    Matrix.rotateM( matrix, 0, angle, axisX, axisY, axisZ);
68
    Matrix.translateM(matrix, 0,-x,-y,-z);
69
    }
70

    
71
///////////////////////////////////////////////////////////////////////////////////////////////////
72
// PUBLIC API
73
///////////////////////////////////////////////////////////////////////////////////////////////////
74
/**
75
 * Rotate the Mesh by 'angle' degrees around the center, along an axis.
76
 *
77
 * @param angle  Angle that we want to rotate the Object to. Unit: degrees
78
 * @param axis   Axis of rotation
79
 * @param center Coordinates of the Point we are rotating around.
80
 */
81
  public MatrixEffectRotate(Data1D angle, Data3D axis, Data3D center)
82
    {
83
    super(EffectName.ROTATE);
84
    mAngle = angle;
85
    mAxis = axis;
86
    mCenter = center;
87
    }
88
  }
(14-14/31)