TressFXLib.HairStrandVertex.HairStrandVertex C# (CSharp) 메소드

HairStrandVertex() 공개 메소드

"Easy-init" constructor.
public HairStrandVertex ( System.Vector3 position, System.Vector3 tangent, System.Vector4 texcoord ) : System
position System.Vector3
tangent System.Vector3
texcoord System.Vector4
리턴 System
        public HairStrandVertex(Vector3 position, Vector3 tangent, Vector4 texcoord)
        {
            this.position = position;
            this.tangent = tangent;
            this.texcoord = texcoord;
        }