HitInfo.HitInfo C# (CSharp) Method

HitInfo() public method

public HitInfo ( int polygonLine, int triangleLine, Vector3 intersectionPoint3D ) : System.Collections
polygonLine int
triangleLine int
intersectionPoint3D Vector3
return System.Collections
    public HitInfo(int polygonLine, int triangleLine, Vector3 intersectionPoint3D)
    {
        this.polygonLine = polygonLine;
        this.triangleLine = triangleLine;
        this.intersectionPoint3D = intersectionPoint3D;
    }
HitInfo