vello/crates/encoding/src/math.rs
2023-04-18 14:46:16 -07:00

78 lines
2.2 KiB
Rust

// Copyright 2022 The Vello authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
use std::ops::Mul;
use bytemuck::{Pod, Zeroable};
use peniko::kurbo;
/// Affine transformation matrix.
#[derive(Copy, Clone, Debug, PartialEq, Pod, Zeroable)]
#[repr(C)]
pub struct Transform {
/// 2x2 matrix.
pub matrix: [f32; 4],
/// Translation.
pub translation: [f32; 2],
}
impl Transform {
/// Identity transform.
pub const IDENTITY: Self = Self {
matrix: [1.0, 0.0, 0.0, 1.0],
translation: [0.0; 2],
};
/// Creates a transform from a kurbo affine matrix.
pub fn from_kurbo(transform: &kurbo::Affine) -> Self {
let c = transform.as_coeffs().map(|x| x as f32);
Self {
matrix: [c[0], c[1], c[2], c[3]],
translation: [c[4], c[5]],
}
}
/// Converts the transform to a kurbo affine matrix.
pub fn to_kurbo(&self) -> kurbo::Affine {
kurbo::Affine::new(
[
self.matrix[0],
self.matrix[1],
self.matrix[2],
self.matrix[3],
self.translation[0],
self.translation[1],
]
.map(|x| x as f64),
)
}
}
impl Mul for Transform {
type Output = Self;
#[inline]
fn mul(self, other: Self) -> Self {
Self {
matrix: [
self.matrix[0] * other.matrix[0] + self.matrix[2] * other.matrix[1],
self.matrix[1] * other.matrix[0] + self.matrix[3] * other.matrix[1],
self.matrix[0] * other.matrix[2] + self.matrix[2] * other.matrix[3],
self.matrix[1] * other.matrix[2] + self.matrix[3] * other.matrix[3],
],
translation: [
self.matrix[0] * other.translation[0]
+ self.matrix[2] * other.translation[1]
+ self.translation[0],
self.matrix[1] * other.translation[0]
+ self.matrix[3] * other.translation[1]
+ self.translation[1],
],
}
}
}
pub fn point_to_f32(point: kurbo::Point) -> [f32; 2] {
[point.x as f32, point.y as f32]
}