/// Delta transformations for affine matrices.
///
/// Provides helpers for projecting a scalar delta through a 2D affine
/// transformation matrix.
use ;
/// Projects a scalar delta along a given axis through a 2D affine transform.
///
/// # Parameters
/// - `offset`: The delta along the X or Y axis.
/// - `axis`: Which axis the delta corresponds to.
/// - `transform`: The 2×3 affine transform matrix.
///
/// # Returns
/// The transformed scalar offset in surface space.