blueloveTH 1 سال پیش
والد
کامیت
d33755538a
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      docs/modules/linalg.md
  2. 1 1
      include/typings/linalg.pyi

+ 1 - 1
docs/modules/linalg.md

@@ -50,7 +50,7 @@ class vec2:
     def smooth_damp(current: vec2, target: vec2, current_velocity: vec2, smooth_time: float, max_speed: float, delta_time: float) -> tuple[vec2, vec2]:
     def smooth_damp(current: vec2, target: vec2, current_velocity: vec2, smooth_time: float, max_speed: float, delta_time: float) -> tuple[vec2, vec2]:
         ...
         ...
 
 
-class vec3(_StructLike['vec3']):
+class vec3:
     x: float
     x: float
     y: float
     y: float
     z: float
     z: float

+ 1 - 1
include/typings/linalg.pyi

@@ -44,7 +44,7 @@ class vec2:
         Returns a new value that is closer to the target and current velocity.
         Returns a new value that is closer to the target and current velocity.
         """
         """
 
 
-class vec3(_StructLike['vec3']):
+class vec3:
     x: float
     x: float
     y: float
     y: float
     z: float
     z: float