Project

General

Profile

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

library / src / main / java / org / distorted / library / effect / MatrixEffectShear.java @ 8c57d77b

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2017 Leszek Koltunski  leszek@koltunski.pl                                          //
3
//                                                                                               //
4
// This file is part of Distorted.                                                               //
5
//                                                                                               //
6
// This library is free software; you can redistribute it and/or                                 //
7
// modify it under the terms of the GNU Lesser General Public                                    //
8
// License as published by the Free Software Foundation; either                                  //
9
// version 2.1 of the License, or (at your option) any later version.                            //
10
//                                                                                               //
11
// This library 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 GNU                             //
14
// Lesser General Public License for more details.                                               //
15
//                                                                                               //
16
// You should have received a copy of the GNU Lesser General Public                              //
17
// License along with this library; if not, write to the Free Software                           //
18
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA                //
19
///////////////////////////////////////////////////////////////////////////////////////////////////
20

    
21
package org.distorted.library.effect;
22

    
23
import android.opengl.Matrix;
24

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

    
27
///////////////////////////////////////////////////////////////////////////////////////////////////
28
/**
29
 * Shear the Mesh.
30
 */
31
public class MatrixEffectShear extends MatrixEffect
32
  {
33
  private final Data3D mShear, mCenter;
34

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

    
47
///////////////////////////////////////////////////////////////////////////////////////////////////
48
/**
49
 * Only for use by the library itself.
50
 * <p>
51
 * Here and in Shear we have the whole reason why there are two separate 'P' and 'V' (Point and
52
 * Vector) matrices - Scale and Shear have to manipulate Points and Normal Vectors differently.
53
 *
54
 * @y.exclude
55
 */
56
  public void apply(float[] matrixP, float[] matrixV, float[] uniforms, int index)
57
    {
58
    float sx = uniforms[NUM_FLOAT_UNIFORMS*index  ];
59
    float sy = uniforms[NUM_FLOAT_UNIFORMS*index+1];
60
    float sz = uniforms[NUM_FLOAT_UNIFORMS*index+2];
61

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

    
66
    Matrix.translateM(matrixP, 0, x, y, z);
67

    
68
    matrixP[4] += sx*matrixP[0]; // Multiply viewMatrix by 1 x 0 0 , i.e. X-shear.
69
    matrixP[5] += sx*matrixP[1]; //                        0 1 0 0
70
    matrixP[6] += sx*matrixP[2]; //                        0 0 1 0
71
    matrixP[7] += sx*matrixP[3]; //                        0 0 0 1
72

    
73
    matrixP[0] += sy*matrixP[4]; // Multiply viewMatrix by 1 0 0 0 , i.e. Y-shear.
74
    matrixP[1] += sy*matrixP[5]; //                        y 1 0 0
75
    matrixP[2] += sy*matrixP[6]; //                        0 0 1 0
76
    matrixP[3] += sy*matrixP[7]; //                        0 0 0 1
77

    
78
    matrixP[4] += sz*matrixP[8]; // Multiply viewMatrix by 1 0 0 0 , i.e. Z-shear.
79
    matrixP[5] += sz*matrixP[9]; //                        0 1 0 0
80
    matrixP[6] += sz*matrixP[10];//                        0 z 1 0
81
    matrixP[7] += sz*matrixP[11];//                        0 0 0 1
82

    
83
    Matrix.translateM(matrixP, 0,-x,-y,-z);
84

    
85
    Matrix.translateM(matrixV, 0, x, y, z);
86

    
87
    matrixV[0] -= sx*matrixV[4]; // Multiply viewMatrix by 1 0 0 0 , i.e. vector X-shear.
88
    matrixV[1] -= sx*matrixV[5]; //                       -x 1 0 0
89
    matrixV[2] -= sx*matrixV[6]; //                        0 0 1 0
90
    matrixV[3] -= sx*matrixV[7]; //                        0 0 0 1
91

    
92
    matrixV[4] -= sy*matrixV[0]; // Multiply viewMatrix by 1-y 0 0 , i.e. vector Y-shear.
93
    matrixV[5] -= sy*matrixV[1]; //                        0 1 0 0
94
    matrixV[6] -= sy*matrixV[2]; //                        0 0 1 0
95
    matrixV[7] -= sy*matrixV[3]; //                        0 0 0 1
96

    
97
    matrixV[8] -= sz*matrixV[4]; // Multiply viewMatrix by 1 0 0 0 , i.e. vector Z-shear.
98
    matrixV[9] -= sz*matrixV[5]; //                        0 1-z 0
99
    matrixV[10]-= sz*matrixV[6]; //                        0 0 1 0
100
    matrixV[11]-= sz*matrixV[7]; //                        0 0 0 1
101

    
102
    Matrix.translateM(matrixV, 0,-x,-y,-z);
103
    }
104

    
105
///////////////////////////////////////////////////////////////////////////////////////////////////
106
// PUBLIC API
107
///////////////////////////////////////////////////////////////////////////////////////////////////
108
/**
109
 * Shear the Mesh.
110
 *
111
 * @param shear   The 3-tuple of shear factors. The first controls level
112
 *                of shearing in the X-axis, second - Y-axis and the third -
113
 *                Z-axis. Each is the tangent of the shear angle, i.e 0 -
114
 *                no shear, 1 - shear by 45 degrees (tan(45deg)=1) etc.
115
 * @param center  Center of shearing, i.e. the point which stays unmoved.
116
 */
117
  public MatrixEffectShear(Data3D shear, Data3D center)
118
    {
119
    super(EffectName.SHEAR);
120
    mShear = shear;
121
    mCenter = center;
122
    }
123
  }
(16-16/34)