Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Swizzle property z and w for int2/float2 and w for int3/float3 #224

Open
Thaina opened this issue Jul 28, 2022 · 3 comments
Open

Swizzle property z and w for int2/float2 and w for int3/float3 #224

Thaina opened this issue Jul 28, 2022 · 3 comments

Comments

@Thaina
Copy link

Thaina commented Jul 28, 2022

Please add complete swizzle property to int2 float2 int3 float3 similar to int4 and float4 and define it as 0

So that we could simply upcast vec2 and vec3 to another dimension easily as downcast vec4 to lower dimension

Such as

var screenPoint = new float2(5,3);
var groundPoint = screenPoint.xzy; // (5,0,3)
var wallPoint = screenPoint.zyx; // (0,3,5)

Alternatively it might be xy0 x0y _0xy yx0 y0x _0yx and maybe xy1 x1y _1xy yx1 y1x _1yx and so on for specific default number

@Cat-du-Fromage
Copy link

+1, the number of time i wished there was a way to make point.x0z is beyond count!

@vertxxyz
Copy link

vertxxyz commented Feb 28, 2023

I was like, ah yes, lets use assembly definition references to add this...

public partial struct float2
{
	/// <summary>Swizzles the vector.</summary>
	[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
	public float3 xy0
	{
		[MethodImpl(MethodImplOptions.AggressiveInlining)]
		get => new(x, y, 0);
	}
}

But nope, as soon as it ends up in Bursted code... Burst error BC0102: Unexpected internal compiler error while processing function

At least new float3(float2, z) exists.

@ltmx
Copy link

ltmx commented Sep 27, 2023

Unfortunately, unity is apparently working on enabling users to extend native class, using the attribute [ExtensionsOfNativeClass], but is definitely not supported at the moment.
In the meantime, You can do a pull request and implement it in this file : https://github.com/LTMX/Unity.mathx/blob/master/Runtime/mathx.floatx.gen.cs
Have a nice day fellow !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants