@@ -63,12 +63,6 @@ public static partial class mathx
6363 /// <inheritdoc cref="smoothstep(float,float,float)" />
6464 [ MethodImpl ( IL ) ] public static float2 smoothstep ( this float2 f , float2 min , float2 max ) => math . smoothstep ( min , max , f ) ;
6565 /// <inheritdoc cref="smoothstep(float,float,float)" />
66- [ MethodImpl ( IL ) ] public static float4 smoothstep ( this Vector4 f , float4 min , float4 max ) => math . smoothstep ( min , max , f ) ;
67- /// <inheritdoc cref="smoothstep(float,float,float)" />
68- [ MethodImpl ( IL ) ] public static float3 smoothstep ( this Vector3 f , float3 min , float3 max ) => math . smoothstep ( min , max , f ) ;
69- /// <inheritdoc cref="smoothstep(float,float,float)" />
70- [ MethodImpl ( IL ) ] public static float2 smoothstep ( this Vector2 f , float2 min , float2 max ) => math . smoothstep ( min , max , f ) ;
71- /// <inheritdoc cref="smoothstep(float,float,float)" />
7266 [ MethodImpl ( IL ) ] public static double4 smoothstep ( this double4 f , double4 min , double4 max ) => math . smoothstep ( min , max , f ) ;
7367 /// <inheritdoc cref="smoothstep(float,float,float)" />
7468 [ MethodImpl ( IL ) ] public static double3 smoothstep ( this double3 f , double3 min , double3 max ) => math . smoothstep ( min , max , f ) ;
@@ -85,12 +79,6 @@ public static partial class mathx
8579 /// <inheritdoc cref="smoothstep(float,float,float)" />
8680 [ MethodImpl ( IL ) ] public static float2 smoothstep ( this float2 f ) => f . smoothstep ( 0 , 1 ) ;
8781 /// <inheritdoc cref="smoothstep(float,float,float)" />
88- [ MethodImpl ( IL ) ] public static float4 smoothstep ( this Vector4 f ) => f . smoothstep ( 0 , 1 ) ;
89- /// <inheritdoc cref="smoothstep(float,float,float)" />
90- [ MethodImpl ( IL ) ] public static float3 smoothstep ( this Vector3 f ) => f . smoothstep ( 0 , 1 ) ;
91- /// <inheritdoc cref="smoothstep(float,float,float)" />
92- [ MethodImpl ( IL ) ] public static float2 smoothstep ( this Vector2 f ) => f . smoothstep ( 0 , 1 ) ;
93- /// <inheritdoc cref="smoothstep(float,float,float)" />
9482 [ MethodImpl ( IL ) ] public static double4 smoothstep ( this double4 f ) => f . smoothstep ( 0 , 1 ) ;
9583 /// <inheritdoc cref="smoothstep(float,float,float)" />
9684 [ MethodImpl ( IL ) ] public static double3 smoothstep ( this double3 f ) => f . smoothstep ( 0 , 1 ) ;
@@ -109,12 +97,6 @@ public static partial class mathx
10997 /// <inheritdoc cref="unlerp(float,float,float)" />
11098 [ MethodImpl ( IL ) ] public static float2 unlerp ( this float2 f , float2 min , float2 max ) => math . unlerp ( min , max , f ) ;
11199 /// <inheritdoc cref="unlerp(float,float,float)" />
112- [ MethodImpl ( IL ) ] public static float4 unlerp ( this Vector4 f , float4 min , float4 max ) => math . unlerp ( min , max , f ) ;
113- /// <inheritdoc cref="unlerp(float,float,float)" />
114- [ MethodImpl ( IL ) ] public static float3 unlerp ( this Vector3 f , float3 min , float3 max ) => math . unlerp ( min , max , f ) ;
115- /// <inheritdoc cref="unlerp(float,float,float)" />
116- [ MethodImpl ( IL ) ] public static float2 unlerp ( this Vector2 f , float2 min , float2 max ) => math . unlerp ( min , max , f ) ;
117- /// <inheritdoc cref="unlerp(float,float,float)" />
118100 [ MethodImpl ( IL ) ] public static double4 unlerp ( this double4 f , double4 min , double4 max ) => math . unlerp ( min , max , f ) ;
119101 /// <inheritdoc cref="unlerp(float,float,float)" />
120102 [ MethodImpl ( IL ) ] public static double3 unlerp ( this double3 f , double3 min , double3 max ) => math . unlerp ( min , max , f ) ;
@@ -133,12 +115,6 @@ public static partial class mathx
133115 /// <inheritdoc cref="lerp(float4,float4,float4)" />
134116 [ MethodImpl ( IL ) ] public static float2 lerp ( this float2 f , float2 min , float2 max ) => math . lerp ( min , max , f ) ;
135117 /// <inheritdoc cref="lerp(float4,float4,float4)" />
136- [ MethodImpl ( IL ) ] public static float4 lerp ( this Vector4 f , float4 min , float4 max ) => math . lerp ( min , max , f ) ;
137- /// <inheritdoc cref="lerp(float4,float4,float4)" />
138- [ MethodImpl ( IL ) ] public static float3 lerp ( this Vector3 f , float3 min , float3 max ) => math . lerp ( min , max , f ) ;
139- /// <inheritdoc cref="lerp(float4,float4,float4)" />
140- [ MethodImpl ( IL ) ] public static float2 lerp ( this Vector2 f , float2 min , float2 max ) => math . lerp ( min , max , f ) ;
141- /// <inheritdoc cref="lerp(float4,float4,float4)" />
142118 [ MethodImpl ( IL ) ] public static double4 lerp ( this double4 f , double4 min , double4 max ) => math . lerp ( min , max , f ) ;
143119 /// <inheritdoc cref="lerp(float4,float4,float4)" />
144120 [ MethodImpl ( IL ) ] public static double3 lerp ( this double3 f , double3 min , double3 max ) => math . lerp ( min , max , f ) ;
@@ -207,12 +183,6 @@ public static partial class mathx
207183 /// <inheritdoc cref="step(float,float)" />
208184 [ MethodImpl ( IL ) ] public static float2 step ( this float2 f , float2 step ) => math . step ( f , step ) ;
209185 /// <inheritdoc cref="step(float,float)" />
210- [ MethodImpl ( IL ) ] public static float4 step ( this Vector4 f , float4 step ) => math . step ( f , step ) ;
211- /// <inheritdoc cref="step(float,float)" />
212- [ MethodImpl ( IL ) ] public static float3 step ( this Vector3 f , float3 step ) => math . step ( f , step ) ;
213- /// <inheritdoc cref="step(float,float)" />
214- [ MethodImpl ( IL ) ] public static float2 step ( this Vector2 f , float2 step ) => math . step ( f , step ) ;
215- /// <inheritdoc cref="step(float,float)" />
216186 [ MethodImpl ( IL ) ] public static double4 step ( this double4 f , double4 step ) => math . step ( f , step ) ;
217187 /// <inheritdoc cref="step(float,float)" />
218188 [ MethodImpl ( IL ) ] public static double3 step ( this double3 f , double3 step ) => math . step ( f , step ) ;
0 commit comments