WindowsPuzzleVisualizer.Game1.RGB C# (CSharp) 메소드

RGB() 개인적인 메소드

private RGB ( int r, int g, int b ) : Vector3
r int
g int
b int
리턴 Vector3
        private Vector3 RGB(int r, int g, int b)
        {
            return new Vector3(r / 255f, g / 255f, b / 255f);
        }