PolyLink
A library to allow manipulation of geometry from within Mathematica
 All Classes Namespaces Files Functions Variables Properties
MathLinked.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 
7 namespace PolyLink
8 {
9  public class MathLinked
10  {
11  public MathLinked()
12  {
13  ML = new KernelDispatch();
14  }
15 
16  public IKernelDispatch ML { get; set; }
17  }
18 }