Skip to content

Instantly share code, notes, and snippets.

@todorok1
Created November 21, 2020 06:49
Show Gist options
  • Save todorok1/e6a0e98b7e40d558882bb50aeb392f8d to your computer and use it in GitHub Desktop.
Save todorok1/e6a0e98b7e40d558882bb50aeb392f8d to your computer and use it in GitHub Desktop.
Vector2型、Vector4型のサンプル
// 成分が2つのVector2型
Vector2 myVector2 = new Vector2(6.0f, 7.0f);
// 成分が4つのVector4型
Vector4 myVector4 = new Vector4(1.0f, 2.0f, 3.0f, 4.0f);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment