Returns the platform of the Rhino executable.
rhinoscriptsyntax.ExePlatform ()
rhinoscript.application.ExePlatform ()
None.
Number |
The Rhino platform if successful. Possible values are as follows:
|
import rhinoscriptsyntax as rs
if rs.ExePlatform() == 1:
print "You are using a 64-bit version of Rhino."
else:
print "You are using a 32-bit version of Rhino."