Source code for pyvcad_rendering.export

import wx

[docs] def export(*args, **kwargs): app = wx.GetApp() or wx.App(False) wx.MessageBox("The export feature is temporarily disabled on the attribute-modeling branch until compilers are ported.", "Export Disabled", wx.OK | wx.ICON_INFORMATION)
[docs] def Export(*args, **kwargs): export(*args, **kwargs)
__all__ = ["export", "Export"]