2014-12-24 03:04:10 +01:00
|
|
|
// Copyright 2014 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2014-12-09 15:16:04 +01:00
|
|
|
|
2014-12-09 14:09:22 +01:00
|
|
|
package ebiten
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math"
|
|
|
|
)
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// GeometryMatrixDim is a dimension of a GeometryMatrix.
|
2014-12-09 16:32:49 +01:00
|
|
|
const GeometryMatrixDim = 3
|
2014-12-09 14:09:22 +01:00
|
|
|
|
2014-12-20 18:55:15 +01:00
|
|
|
// A GeometryMatrix represents a matrix to transform geometry when rendering an image.
|
2014-12-09 14:09:22 +01:00
|
|
|
type GeometryMatrix struct {
|
2014-12-24 15:35:01 +01:00
|
|
|
// es represents elements.
|
2014-12-24 15:26:04 +01:00
|
|
|
es [GeometryMatrixDim - 1][GeometryMatrixDim]float64
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-25 19:58:33 +01:00
|
|
|
// NewGeometryMatrix returns an identity geometry matrix.
|
|
|
|
func NewGeometryMatrix() GeometryMatrix {
|
2014-12-09 14:09:22 +01:00
|
|
|
return GeometryMatrix{
|
2014-12-09 16:32:49 +01:00
|
|
|
[GeometryMatrixDim - 1][GeometryMatrixDim]float64{
|
2014-12-09 14:09:22 +01:00
|
|
|
{1, 0, 0},
|
|
|
|
{0, 1, 0},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GeometryMatrix) dim() int {
|
2014-12-09 16:32:49 +01:00
|
|
|
return GeometryMatrixDim
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Element returns a value of a matrix at (i, j).
|
2014-12-13 06:41:38 +01:00
|
|
|
func (g *GeometryMatrix) Element(i, j int) float64 {
|
2014-12-24 15:26:04 +01:00
|
|
|
return g.es[i][j]
|
2014-12-13 06:41:38 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 14:05:44 +01:00
|
|
|
// Concat multiplies a geometry matrix with the other geometry matrix.
|
2014-12-09 14:09:22 +01:00
|
|
|
func (g *GeometryMatrix) Concat(other GeometryMatrix) {
|
|
|
|
result := GeometryMatrix{}
|
|
|
|
mul(&other, g, &result)
|
|
|
|
*g = result
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *GeometryMatrix) setElement(i, j int, element float64) {
|
2014-12-24 15:26:04 +01:00
|
|
|
g.es[i][j] = element
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 17:58:52 +01:00
|
|
|
// ScaleGeometry returns a matrix that scales a geometry matrix by (x, y).
|
|
|
|
func ScaleGeometry(x, y float64) GeometryMatrix {
|
|
|
|
return GeometryMatrix{
|
|
|
|
[2][3]float64{
|
|
|
|
{x, 0, 0},
|
|
|
|
{0, y, 0},
|
|
|
|
},
|
|
|
|
}
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 17:58:52 +01:00
|
|
|
// TranslateGeometry returns a matrix taht translates a geometry matrix by (tx, ty).
|
|
|
|
func TranslateGeometry(tx, ty float64) GeometryMatrix {
|
|
|
|
return GeometryMatrix{
|
|
|
|
[2][3]float64{
|
|
|
|
{1, 0, tx},
|
|
|
|
{0, 1, ty},
|
|
|
|
},
|
|
|
|
}
|
2014-12-09 14:09:22 +01:00
|
|
|
}
|
|
|
|
|
2014-12-14 17:58:52 +01:00
|
|
|
// RotateGeometry returns a matrix that rotates a geometry matrix by theta.
|
|
|
|
func RotateGeometry(theta float64) GeometryMatrix {
|
2014-12-09 14:09:22 +01:00
|
|
|
sin, cos := math.Sincos(theta)
|
2014-12-14 17:58:52 +01:00
|
|
|
return GeometryMatrix{
|
2014-12-09 14:09:22 +01:00
|
|
|
[2][3]float64{
|
|
|
|
{cos, -sin, 0},
|
|
|
|
{sin, cos, 0},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|