This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public struct Vector3 { | |
public float x; | |
public float y; | |
public float z; | |
public Vector3() { // 編譯錯誤,結構無法包含明確無參數的建構函式 | |
x = y = z = 0; | |
} | |
public Vector3( float x, float y, float z ) { | |
this.x = x; | |
this.y = y; | |
this.z = z; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment