├── .gitignore ├── AnyCAD.Rapid.Core ├── AnyCAD.Rapid.Core.csproj ├── Command │ ├── UICommand.cs │ ├── UICommandContext.cs │ └── UICommandManager.cs ├── CommandEx │ ├── AddTagCommand.cs │ ├── FileCommands.cs │ ├── ShapeCommand.cs │ └── ViewCommands.cs ├── Data │ ├── MyTextElement.cs │ └── SphereElementSchema.cs ├── MyDocumentListener.cs ├── MyDocumentViewer.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── README.md ├── RapidCAX.sln ├── RapidCAX ├── App.config ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── CommandLineCtrl.xaml │ ├── CommandLineCtrl.xaml.cs │ ├── RapidBackstageCtrl.xaml │ └── RapidBackstageCtrl.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── PropertyUI │ ├── BasicPage.xaml │ ├── BasicPage.xaml.cs │ ├── TransformPage.xaml │ └── TransformPage.xaml.cs ├── RapidCAX.csproj ├── Resources │ ├── StringResource.xaml │ ├── app.ico │ └── icon.png ├── app.ico └── packages.config ├── show.jpg └── show2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/.gitignore -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/AnyCAD.Rapid.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/AnyCAD.Rapid.Core.csproj -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/Command/UICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/Command/UICommand.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/Command/UICommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/Command/UICommandContext.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/Command/UICommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/Command/UICommandManager.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/CommandEx/AddTagCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/CommandEx/AddTagCommand.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/CommandEx/FileCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/CommandEx/FileCommands.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/CommandEx/ShapeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/CommandEx/ShapeCommand.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/CommandEx/ViewCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/CommandEx/ViewCommands.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/Data/MyTextElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/Data/MyTextElement.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/Data/SphereElementSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/Data/SphereElementSchema.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/MyDocumentListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/MyDocumentListener.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/MyDocumentViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/MyDocumentViewer.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AnyCAD.Rapid.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/AnyCAD.Rapid.Core/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/README.md -------------------------------------------------------------------------------- /RapidCAX.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX.sln -------------------------------------------------------------------------------- /RapidCAX/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/App.config -------------------------------------------------------------------------------- /RapidCAX/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/App.xaml -------------------------------------------------------------------------------- /RapidCAX/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/App.xaml.cs -------------------------------------------------------------------------------- /RapidCAX/Controls/CommandLineCtrl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Controls/CommandLineCtrl.xaml -------------------------------------------------------------------------------- /RapidCAX/Controls/CommandLineCtrl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Controls/CommandLineCtrl.xaml.cs -------------------------------------------------------------------------------- /RapidCAX/Controls/RapidBackstageCtrl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Controls/RapidBackstageCtrl.xaml -------------------------------------------------------------------------------- /RapidCAX/Controls/RapidBackstageCtrl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Controls/RapidBackstageCtrl.xaml.cs -------------------------------------------------------------------------------- /RapidCAX/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/MainWindow.xaml -------------------------------------------------------------------------------- /RapidCAX/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/MainWindow.xaml.cs -------------------------------------------------------------------------------- /RapidCAX/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RapidCAX/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /RapidCAX/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Properties/Resources.resx -------------------------------------------------------------------------------- /RapidCAX/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /RapidCAX/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Properties/Settings.settings -------------------------------------------------------------------------------- /RapidCAX/PropertyUI/BasicPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/PropertyUI/BasicPage.xaml -------------------------------------------------------------------------------- /RapidCAX/PropertyUI/BasicPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/PropertyUI/BasicPage.xaml.cs -------------------------------------------------------------------------------- /RapidCAX/PropertyUI/TransformPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/PropertyUI/TransformPage.xaml -------------------------------------------------------------------------------- /RapidCAX/PropertyUI/TransformPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/PropertyUI/TransformPage.xaml.cs -------------------------------------------------------------------------------- /RapidCAX/RapidCAX.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/RapidCAX.csproj -------------------------------------------------------------------------------- /RapidCAX/Resources/StringResource.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Resources/StringResource.xaml -------------------------------------------------------------------------------- /RapidCAX/Resources/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Resources/app.ico -------------------------------------------------------------------------------- /RapidCAX/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/Resources/icon.png -------------------------------------------------------------------------------- /RapidCAX/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/app.ico -------------------------------------------------------------------------------- /RapidCAX/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/RapidCAX/packages.config -------------------------------------------------------------------------------- /show.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/show.jpg -------------------------------------------------------------------------------- /show2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycad/RapidCAX/HEAD/show2.png --------------------------------------------------------------------------------