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
|
2013-06-20 18:47:39 +02:00
|
|
|
|
2013-12-02 13:45:10 +01:00
|
|
|
type affine interface {
|
2014-12-07 15:20:41 +01:00
|
|
|
dim() int
|
2014-12-13 06:41:38 +01:00
|
|
|
Element(i, j int) float64
|
2014-12-26 02:33:50 +01:00
|
|
|
SetElement(i, j int, element float64)
|
2013-06-20 18:47:39 +02:00
|
|
|
}
|
|
|
|
|
2014-12-09 14:09:22 +01:00
|
|
|
func isIdentity(ebiten affine) bool {
|
|
|
|
dim := ebiten.dim()
|
2013-06-20 18:47:39 +02:00
|
|
|
for i := 0; i < dim-1; i++ {
|
|
|
|
for j := 0; j < dim; j++ {
|
2014-12-13 06:41:38 +01:00
|
|
|
element := ebiten.Element(i, j)
|
2013-06-20 18:47:39 +02:00
|
|
|
if i == j && element != 1 {
|
|
|
|
return false
|
|
|
|
} else if i != j && element != 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2014-12-25 20:22:06 +01:00
|
|
|
func add(lhs, rhs, result affine) {
|
|
|
|
dim := lhs.dim()
|
|
|
|
if dim != rhs.dim() {
|
|
|
|
panic("diffrent-sized matrices can't be multiplied")
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < dim-1; i++ {
|
|
|
|
for j := 0; j < dim; j++ {
|
2014-12-26 03:22:36 +01:00
|
|
|
v := lhs.Element(i, j) + rhs.Element(i, j)
|
|
|
|
result.SetElement(i, j, v)
|
2014-12-25 20:22:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-02 13:45:10 +01:00
|
|
|
func mul(lhs, rhs, result affine) {
|
2014-12-07 15:20:41 +01:00
|
|
|
dim := lhs.dim()
|
|
|
|
if dim != rhs.dim() {
|
2013-06-20 18:47:39 +02:00
|
|
|
panic("diffrent-sized matrices can't be multiplied")
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < dim-1; i++ {
|
|
|
|
for j := 0; j < dim; j++ {
|
|
|
|
element := float64(0)
|
|
|
|
for k := 0; k < dim-1; k++ {
|
2014-12-13 06:41:38 +01:00
|
|
|
element += lhs.Element(i, k) *
|
|
|
|
rhs.Element(k, j)
|
2013-06-20 18:47:39 +02:00
|
|
|
}
|
|
|
|
if j == dim-1 {
|
2014-12-13 06:41:38 +01:00
|
|
|
element += lhs.Element(i, j)
|
2013-06-20 18:47:39 +02:00
|
|
|
}
|
2014-12-26 02:33:50 +01:00
|
|
|
result.SetElement(i, j, element)
|
2013-06-20 18:47:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|