Skip to content

Taking shape

Pre-release
Pre-release
Compare
Choose a tag to compare
@pearswj pearswj released this 20 Aug 11:34
· 75 commits to master since this release
Usage: Compat.exe plugin.dll api1.dll api2.dll ...

After testing the previous release more rigorously I'm slightly afraid to say this, but I think this one works.

Running it against the included test project (below) yields good results!

public class Class1
    {
        Class1() // mscorlib (.ctor, ignore)
        {
            var str = "Hello World!"; // mscorlib (ignore, possibly optimised out by the compiler...)
            var mesh = new Point3d(0.0, 0.0, 0.0); // exists in rhinocommon sr8
            Color4f.FromArgb(0.0f, 0.0f, 0.0f, 0.0f); // introduced in sr11 (?)
        }
    }

screen shot 2015-08-20 at 12 20 28