mirror of
https://github.com/pocketpy/pocketpy
synced 2026-03-21 20:50:16 +00:00
Update vmath.pyi
This commit is contained in:
parent
427d2293e0
commit
1d567445ed
@ -157,6 +157,23 @@ class vec3i(_vecI['vec3i']):
|
||||
|
||||
def __init__(self, x: int, y: int, z: int) -> None: ...
|
||||
|
||||
class vec4i(_vecI['vec4i']):
|
||||
@property
|
||||
def x(self) -> int: ...
|
||||
@property
|
||||
def y(self) -> int: ...
|
||||
@property
|
||||
def z(self) -> int: ...
|
||||
@property
|
||||
def w(self) -> int: ...
|
||||
|
||||
def with_x(self, x: int) -> vec4i: ...
|
||||
def with_y(self, y: int) -> vec4i: ...
|
||||
def with_z(self, z: int) -> vec4i: ...
|
||||
def with_w(self, w: int) -> vec4i: ...
|
||||
|
||||
def __init__(self, x: int, y: int, z: int, w: int) -> None: ...
|
||||
|
||||
|
||||
class vec3(_vecF['vec3']):
|
||||
@property
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user