Re: [IronPython] Seattle IronPython Meetup

2011-06-10 Thread Steve Baer
and Mac products. -Steve Steve Baer Robert McNeel Associates www.rhino3d.com python.rhino3d.com -Original Message- From: Jeff Hardy Sent: Friday, June 10, 2011 1:59 PM To: st...@mcneel.com Subject: Re: [IronPython] Seattle IronPython Meetup Hi Steve, Interesting offer - would evening

Re: [IronPython] ArenaNet's Use of IronPython

2011-03-16 Thread Steve Baer
Just in case anyone is interested in who's using IronPython, we're using it on both our Windows and Mac versions of Rhino http://python.rhino3d.com/forums/1-RhinoPython http://www.rhino3d.com/ http://mac.rhino3d.com/ We are currently using 2.6.2, but will be switching over to 2.7 hopefully

Re: [IronPython] SciPy

2010-12-20 Thread Steve Baer
As far as commercial apps go we are using IronPython as a scripting option for the next version of our 3d modeling software, Rhinoceros. http://www.rhino3d.com/ support site specific to python in Rhino http://python.rhino3d.com/ -Steve From: Oleksii Bidiuk Sent: Monday, December 20, 2010

[IronPython] DocString for properties

2010-03-03 Thread Steve Baer
Hi guys, I've been struggling with getting at the documentation string for a static property defined in one of my C# classes from IronPython. Say my C# class had a public static property that returned an int. public class MyClass { ///summaryMy property summary/summary public static int

[IronPython] Treat struct as tuple

2009-11-30 Thread Steve Baer
coerceTuple( pt ): return [pt.X, pt.Y, pt.Z] The user said this works, but would like to have something a bit cleaner. Do any of you guys suggestions about what I could do to make our Point3d struct more python friendly? Thanks, -Steve Steve Baer Robert McNeel Associates www.rhino3d.com

[IronPython] Current line of script

2009-08-22 Thread Steve Baer
I am hosting IronPython in my application and have python scripts calling some of my C# functions. I was wondering if there was a way to figure out which line of the script I am at from inside my C# function. Thanks, -Steve___ Users mailing list

Re: [IronPython] Scripting an unmanaged app with IronPython?

2009-05-12 Thread Steve Baer
Hi Mike, I did this by creating a C++/CLI DLL that wraps our C++ exported classes/functions for .NET. This way there is no .NET code in our core C++/MFC executable and you get the effect of IP being hosted in the application. Thanks, -Steve - Original Message - From: Mike Krell

[IronPython] Parsing scripts

2008-12-03 Thread Steve Baer
I would like to be able to add some sort of intellisense to a text editor for IronPython scripts. Something along the lines of reporting the available functions in a module after hitting a period. import clr clr. - (show something here) Are there utilities available in IronPython for analyzing

[IronPython] Problem calling proper version of function

2008-09-02 Thread Steve Baer
result in python, is there a way to force the interface version of the property_get function to be called? Thanks, -Steve Steve Baer Robert McNeel Associates www.rhino3d.com www.mcneel.com ___ Users mailing list Users@lists.ironpython.com http

Re: [IronPython] Problem calling proper version of function

2008-09-02 Thread Steve Baer
Hi Dino, Thanks for the quick feedback. That's what I had feared may be the answer. I'll just have to rethink how we'll make IronPython available to Rhino. It is good to know that there is an alternate way to call the interface property. Thanks, -Steve Steve Baer Robert McNeel Associates