ebiten/geometrymatrix.go

117 lines
2.8 KiB
Go
Raw Normal View History

// 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.
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-26 03:22:36 +01:00
es *[GeometryMatrixDim - 1][GeometryMatrixDim]float64
}
func geometryMatrixEsI() *[GeometryMatrixDim - 1][GeometryMatrixDim]float64 {
return &[GeometryMatrixDim - 1][GeometryMatrixDim]float64{
{1, 0, 0},
{0, 1, 0},
}
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-26 03:22:36 +01:00
es: geometryMatrixEsI(),
2014-12-09 14:09:22 +01:00
}
}
2014-12-26 03:22:36 +01:00
func (g GeometryMatrix) dim() int {
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-26 03:22:36 +01:00
func (g GeometryMatrix) Element(i, j int) float64 {
if g.es == nil {
if i == j {
return 1
}
return 0
}
2014-12-24 15:26:04 +01:00
return g.es[i][j]
}
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) {
2014-12-26 03:22:36 +01:00
if g.es == nil {
g.es = geometryMatrixEsI()
}
2014-12-09 14:09:22 +01:00
result := GeometryMatrix{}
mul(&other, g, &result)
*g = result
}
2014-12-25 20:22:06 +01:00
// Add adds a geometry matrix with the other geometry matrix.
func (g *GeometryMatrix) Add(other GeometryMatrix) {
2014-12-26 03:22:36 +01:00
if g.es == nil {
g.es = geometryMatrixEsI()
}
2014-12-25 20:22:06 +01:00
result := GeometryMatrix{}
add(&other, g, &result)
*g = result
}
2014-12-26 02:33:50 +01:00
// SetElement sets an element at (i, j).
func (g *GeometryMatrix) SetElement(i, j int, element float64) {
2014-12-26 03:22:36 +01:00
if g.es == nil {
g.es = geometryMatrixEsI()
}
2014-12-24 15:26:04 +01:00
g.es[i][j] = element
2014-12-09 14:09:22 +01:00
}
// ScaleGeometry returns a matrix that scales a geometry matrix by (x, y).
func ScaleGeometry(x, y float64) GeometryMatrix {
return GeometryMatrix{
2014-12-26 03:22:36 +01:00
es: &[2][3]float64{
{x, 0, 0},
{0, y, 0},
},
}
2014-12-09 14:09:22 +01:00
}
// TranslateGeometry returns a matrix taht translates a geometry matrix by (tx, ty).
func TranslateGeometry(tx, ty float64) GeometryMatrix {
return GeometryMatrix{
2014-12-26 03:22:36 +01:00
es: &[2][3]float64{
{1, 0, tx},
{0, 1, ty},
},
}
2014-12-09 14:09:22 +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)
return GeometryMatrix{
2014-12-26 03:22:36 +01:00
es: &[2][3]float64{
2014-12-09 14:09:22 +01:00
{cos, -sin, 0},
{sin, cos, 0},
},
}
}