├── .gitignore ├── LICENSE ├── README.md ├── addin └── RevitJumper.addin ├── image ├── 1.png ├── 2.png ├── 3.png └── 4.png ├── release ├── 2016 │ ├── Newtonsoft.Json.dll │ └── RevitJumper.dll ├── 2018 │ ├── Newtonsoft.Json.dll │ └── RevitJumper.dll ├── 2019 │ ├── Newtonsoft.Json.dll │ └── RevitJumper.dll └── 2020 │ ├── Newtonsoft.Json.dll │ └── RevitJumper.dll ├── source ├── RevitJumper │ ├── Engines.cs │ ├── ExternalApplication.cs │ ├── JumperCommand.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Query.cs │ ├── Resources │ │ └── Image │ │ │ └── Jumper.png │ ├── RevitJumperR2016.csproj │ ├── RevitJumperR2018.csproj │ ├── RevitJumperR2019.csproj │ ├── RevitJumperR2020.csproj │ ├── UI │ │ ├── Converter │ │ │ └── BooleanVisibilityConverter.cs │ │ ├── MVVM │ │ │ └── Jumper │ │ │ │ ├── Model │ │ │ │ └── DisplayModel.cs │ │ │ │ ├── View │ │ │ │ ├── JumperWnd.xaml │ │ │ │ └── JumperWnd.xaml.cs │ │ │ │ └── ViewModel │ │ │ │ └── JumperVM.cs │ │ └── Resources │ │ │ └── Image │ │ │ └── Icon.ico │ └── WindowUtils.cs ├── RevitJumperR2016.sln ├── RevitJumperR2018.sln ├── RevitJumperR2019.sln └── RevitJumperR2020.sln └── thirdparty ├── Microsoft └── System.Windows.Interactivity.dll ├── Newtonsoft.Json ├── Newtonsoft.Json.dll └── Newtonsoft.Json.xml └── Revit ├── 2016 ├── AdWindows.dll ├── RevitAPI.dll ├── RevitAPIIFC.dll ├── RevitAPIUI.dll └── RevitAddInUtility.dll ├── 2018 ├── AdWindows.dll ├── RevitAPI.dll ├── RevitAPIIFC.dll ├── RevitAPIUI.dll ├── RevitAddInUtility.dll └── UIFrameworkServices.dll ├── 2019 ├── AdWindows.dll ├── RevitAPI.dll ├── RevitAPIIFC.dll ├── RevitAPIUI.dll ├── RevitAddInUtility.dll └── UIFrameworkServices.dll └── 2020 ├── AdWindows.dll ├── RevitAPI.dll ├── RevitAPIIFC.dll ├── RevitAPIUI.dll ├── RevitAddInUtility.dll └── UIFrameworkServices.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/README.md -------------------------------------------------------------------------------- /addin/RevitJumper.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/addin/RevitJumper.addin -------------------------------------------------------------------------------- /image/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/image/1.png -------------------------------------------------------------------------------- /image/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/image/2.png -------------------------------------------------------------------------------- /image/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/image/3.png -------------------------------------------------------------------------------- /image/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/image/4.png -------------------------------------------------------------------------------- /release/2016/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2016/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /release/2016/RevitJumper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2016/RevitJumper.dll -------------------------------------------------------------------------------- /release/2018/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2018/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /release/2018/RevitJumper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2018/RevitJumper.dll -------------------------------------------------------------------------------- /release/2019/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2019/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /release/2019/RevitJumper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2019/RevitJumper.dll -------------------------------------------------------------------------------- /release/2020/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2020/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /release/2020/RevitJumper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/release/2020/RevitJumper.dll -------------------------------------------------------------------------------- /source/RevitJumper/Engines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/Engines.cs -------------------------------------------------------------------------------- /source/RevitJumper/ExternalApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/ExternalApplication.cs -------------------------------------------------------------------------------- /source/RevitJumper/JumperCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/JumperCommand.cs -------------------------------------------------------------------------------- /source/RevitJumper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/RevitJumper/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/Query.cs -------------------------------------------------------------------------------- /source/RevitJumper/Resources/Image/Jumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/Resources/Image/Jumper.png -------------------------------------------------------------------------------- /source/RevitJumper/RevitJumperR2016.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/RevitJumperR2016.csproj -------------------------------------------------------------------------------- /source/RevitJumper/RevitJumperR2018.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/RevitJumperR2018.csproj -------------------------------------------------------------------------------- /source/RevitJumper/RevitJumperR2019.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/RevitJumperR2019.csproj -------------------------------------------------------------------------------- /source/RevitJumper/RevitJumperR2020.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/RevitJumperR2020.csproj -------------------------------------------------------------------------------- /source/RevitJumper/UI/Converter/BooleanVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/UI/Converter/BooleanVisibilityConverter.cs -------------------------------------------------------------------------------- /source/RevitJumper/UI/MVVM/Jumper/Model/DisplayModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/UI/MVVM/Jumper/Model/DisplayModel.cs -------------------------------------------------------------------------------- /source/RevitJumper/UI/MVVM/Jumper/View/JumperWnd.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/UI/MVVM/Jumper/View/JumperWnd.xaml -------------------------------------------------------------------------------- /source/RevitJumper/UI/MVVM/Jumper/View/JumperWnd.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/UI/MVVM/Jumper/View/JumperWnd.xaml.cs -------------------------------------------------------------------------------- /source/RevitJumper/UI/MVVM/Jumper/ViewModel/JumperVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/UI/MVVM/Jumper/ViewModel/JumperVM.cs -------------------------------------------------------------------------------- /source/RevitJumper/UI/Resources/Image/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/UI/Resources/Image/Icon.ico -------------------------------------------------------------------------------- /source/RevitJumper/WindowUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumper/WindowUtils.cs -------------------------------------------------------------------------------- /source/RevitJumperR2016.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumperR2016.sln -------------------------------------------------------------------------------- /source/RevitJumperR2018.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumperR2018.sln -------------------------------------------------------------------------------- /source/RevitJumperR2019.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumperR2019.sln -------------------------------------------------------------------------------- /source/RevitJumperR2020.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/source/RevitJumperR2020.sln -------------------------------------------------------------------------------- /thirdparty/Microsoft/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Microsoft/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /thirdparty/Newtonsoft.Json/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Newtonsoft.Json/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /thirdparty/Newtonsoft.Json/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Newtonsoft.Json/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /thirdparty/Revit/2016/AdWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2016/AdWindows.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2016/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2016/RevitAPI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2016/RevitAPIIFC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2016/RevitAPIIFC.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2016/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2016/RevitAPIUI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2016/RevitAddInUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2016/RevitAddInUtility.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2018/AdWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2018/AdWindows.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2018/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2018/RevitAPI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2018/RevitAPIIFC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2018/RevitAPIIFC.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2018/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2018/RevitAPIUI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2018/RevitAddInUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2018/RevitAddInUtility.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2018/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2018/UIFrameworkServices.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2019/AdWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2019/AdWindows.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2019/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2019/RevitAPI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2019/RevitAPIIFC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2019/RevitAPIIFC.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2019/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2019/RevitAPIUI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2019/RevitAddInUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2019/RevitAddInUtility.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2019/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2019/UIFrameworkServices.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2020/AdWindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2020/AdWindows.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2020/RevitAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2020/RevitAPI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2020/RevitAPIIFC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2020/RevitAPIIFC.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2020/RevitAPIUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2020/RevitAPIUI.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2020/RevitAddInUtility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2020/RevitAddInUtility.dll -------------------------------------------------------------------------------- /thirdparty/Revit/2020/UIFrameworkServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIMCoderLiang/RevitJumper/HEAD/thirdparty/Revit/2020/UIFrameworkServices.dll --------------------------------------------------------------------------------