using YMath; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace Demo { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Projector p = new Projector( new Camera(1), new CoordSystem(new Vector(), Matrix.Ident(4))); var point = p.Project(new Vector(1, 1, 1, 2)); Application.Run(new Form1()); } } }