xn.DepthGenerator.ConvertProjectiveToRealWorld C# (CSharp) Méthode

ConvertProjectiveToRealWorld() public méthode

public ConvertProjectiveToRealWorld ( Point3D projectivePoint ) : Point3D
projectivePoint Point3D
Résultat Point3D
        public Point3D ConvertProjectiveToRealWorld(Point3D projectivePoint)
        {
            Point3D[] projectivePoints = new Point3D[1];
            projectivePoints[0] = projectivePoint;

            return ConvertProjectiveToRealWorld(projectivePoints)[0];
        }

Same methods

DepthGenerator::ConvertProjectiveToRealWorld ( Point3D projectivePoints ) : xn.Point3D[]