ebiten/geom.go

138 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"
)
// GeoMDim is a dimension of a GeoM.
const GeoMDim = 3
2014-12-09 14:09:22 +01:00
// A GeoM represents a matrix to transform geometry when rendering an image.
2014-12-26 03:31:20 +01:00
//
// The initial value is identity.
type GeoM struct {
initialized bool
es [GeoMDim - 1][GeoMDim]float64
2014-12-26 03:22:36 +01:00
}
func (g *GeoM) dim() int {
return GeoMDim
2014-12-09 14:09:22 +01:00
}
2015-01-03 14:54:01 +01:00
func (g *GeoM) initialize() {
g.initialized = true
g.es[0][0] = 1
g.es[1][1] = 1
}
2014-12-14 14:05:44 +01:00
// Element returns a value of a matrix at (i, j).
func (g *GeoM) Element(i, j int) float64 {
if !g.initialized {
2014-12-26 03:22:36 +01:00
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-29 11:04:18 +01:00
func (g *GeoM) Concat(other GeoM) {
if !g.initialized {
2015-01-03 14:54:01 +01:00
g.initialize()
2014-12-26 03:22:36 +01:00
}
result := GeoM{}
2014-12-09 14:09:22 +01:00
mul(&other, g, &result)
*g = result
}
2014-12-25 20:22:06 +01:00
// Add adds a geometry matrix with the other geometry matrix.
2014-12-29 11:04:18 +01:00
func (g *GeoM) Add(other GeoM) {
if !g.initialized {
2015-01-03 14:54:01 +01:00
g.initialize()
2014-12-26 03:22:36 +01:00
}
result := GeoM{}
2014-12-25 20:22:06 +01:00
add(&other, g, &result)
*g = result
}
2015-02-18 03:04:23 +01:00
// Scale scales the matrix by (x, y).
2015-01-03 10:35:44 +01:00
func (g *GeoM) Scale(x, y float64) {
if !g.initialized {
2015-01-03 14:54:01 +01:00
g.initialize()
2015-01-03 10:35:44 +01:00
}
2015-01-03 11:18:09 +01:00
for i := 0; i < GeoMDim; i++ {
g.es[0][i] *= x
g.es[1][i] *= y
}
2015-01-03 10:35:44 +01:00
}
2015-02-18 03:04:23 +01:00
// Translate translates the matrix by (x, y).
2015-01-03 10:35:44 +01:00
func (g *GeoM) Translate(tx, ty float64) {
if !g.initialized {
2015-01-03 14:54:01 +01:00
g.initialize()
2015-01-03 10:35:44 +01:00
}
g.es[0][2] += tx
g.es[1][2] += ty
}
2015-01-05 02:30:33 +01:00
func (g *GeoM) Rotate(theta float64) {
g.Concat(RotateGeo(theta))
}
2014-12-26 02:33:50 +01:00
// SetElement sets an element at (i, j).
func (g *GeoM) SetElement(i, j int, element float64) {
if !g.initialized {
2015-01-03 14:54:01 +01:00
g.initialize()
2014-12-26 03:22:36 +01:00
}
2014-12-24 15:26:04 +01:00
g.es[i][j] = element
2014-12-09 14:09:22 +01:00
}
// ScaleGeo returns a matrix that scales a geometry matrix by (x, y).
func ScaleGeo(x, y float64) GeoM {
return GeoM{
initialized: true,
es: [2][3]float64{
{x, 0, 0},
{0, y, 0},
},
}
2014-12-09 14:09:22 +01:00
}
2015-02-18 03:04:23 +01:00
// TranslateGeo returns a matrix that translates a geometry matrix by (tx, ty).
func TranslateGeo(tx, ty float64) GeoM {
return GeoM{
initialized: true,
es: [2][3]float64{
{1, 0, tx},
{0, 1, ty},
},
}
2014-12-09 14:09:22 +01:00
}
// RotateGeo returns a matrix that rotates a geometry matrix by theta.
func RotateGeo(theta float64) GeoM {
2014-12-09 14:09:22 +01:00
sin, cos := math.Sincos(theta)
return GeoM{
initialized: true,
es: [2][3]float64{
2014-12-09 14:09:22 +01:00
{cos, -sin, 0},
{sin, cos, 0},
},
}
}