From c5ffc53c666495f5750f07eb449832beedf1f9bc Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 11 May 2023 22:07:56 +0800 Subject: [PATCH] Update mat3x3.pyi --- src/mat3x3.pyi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mat3x3.pyi b/src/mat3x3.pyi index 53879114..e0625e47 100644 --- a/src/mat3x3.pyi +++ b/src/mat3x3.pyi @@ -58,8 +58,6 @@ class mat3x3: def ones() -> mat3x3: ... @staticmethod def identity() -> mat3x3: ... - @staticmethod - def ortho(left: float, right: float, bottom: float, top: float) -> mat3x3: ... # affine transformations @staticmethod @@ -70,6 +68,8 @@ class mat3x3: def scale(v: vec2) -> mat3x3: ... @staticmethod def trs(t: vec2, r: float, s: vec2) -> mat3x3: ... + @staticmethod + def ortho(left: float, right: float, bottom: float, top: float) -> mat3x3: ... def is_affine(self) -> bool: ... def inverse_affine(self) -> mat3x3: ...