Project

General

Profile

« Previous | Next » 

Revision 2014665f

Added by Leszek Koltunski almost 7 years ago

Some progress with Effect classes.

View differences:

src/main/java/org/distorted/library/effect/MatrixEffectMove.java
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
///////////////////////////////////////////////////////////////////////////////////////////////////
23

  
24
public class MatrixEffectMove extends MatrixEffect
25
  {
26
  private static final float[] UNITIES = new float[]{0.0f, 0.0f, 0.0f};
27
  private static final int DIMENSION = 3;
28
  private static final boolean SUPPORTS_CENTER = false;
29
  private static final boolean SUPPORTS_REGION = false;
30

  
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

  
33
  public MatrixEffectMove()
34
    {
35
    super(UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION);
36
    }
37
  }
src/main/java/org/distorted/library/effect/MatrixEffectQuaternion.java
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
///////////////////////////////////////////////////////////////////////////////////////////////////
23

  
24
public class MatrixEffectQuaternion extends MatrixEffect
25
  {
26
  private static final float[] UNITIES = new float[]{0.0f, 0.0f, 0.0f};
27
  private static final int DIMENSION = 4;
28
  private static final boolean SUPPORTS_CENTER = true;
29
  private static final boolean SUPPORTS_REGION = false;
30

  
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

  
33
  public MatrixEffectQuaternion()
34
    {
35
    super(UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION);
36
    }
37
  }
src/main/java/org/distorted/library/effect/MatrixEffectRotate.java
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
///////////////////////////////////////////////////////////////////////////////////////////////////
23

  
24
public class MatrixEffectRotate extends MatrixEffect
25
  {
26
  private static final float[] UNITIES = new float[]{0.0f};
27
  private static final int DIMENSION = 4;
28
  private static final boolean SUPPORTS_CENTER = true;
29
  private static final boolean SUPPORTS_REGION = false;
30

  
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

  
33
  public MatrixEffectRotate()
34
    {
35
    super(UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION);
36
    }
37
  }
src/main/java/org/distorted/library/effect/MatrixEffectScale.java
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
///////////////////////////////////////////////////////////////////////////////////////////////////
23

  
24
public class MatrixEffectScale extends MatrixEffect
25
  {
26
  private static final float[] UNITIES = new float[] {1.0f,1.0f,1.0f};
27
  private static final int DIMENSION = 3;
28
  private static final boolean SUPPORTS_CENTER = false;
29
  private static final boolean SUPPORTS_REGION = false;
30

  
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

  
33
  public MatrixEffectScale()
34
    {
35
    super(UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION);
36
    }
37
  }
src/main/java/org/distorted/library/effect/MatrixEffectShear.java
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
///////////////////////////////////////////////////////////////////////////////////////////////////
23

  
24
public class MatrixEffectShear extends MatrixEffect
25
  {
26
  private static final float[] UNITIES = new float[] {0.0f,0.0f,0.0f};
27
  private static final int DIMENSION = 3;
28
  private static final boolean SUPPORTS_CENTER = true;
29
  private static final boolean SUPPORTS_REGION = false;
30

  
31
///////////////////////////////////////////////////////////////////////////////////////////////////
32

  
33
  public MatrixEffectShear()
34
    {
35
    super(UNITIES,DIMENSION,SUPPORTS_CENTER,SUPPORTS_REGION);
36
    }
37
  }

Also available in: Unified diff