├── .gitignore ├── CODE_OF_CONDUCT.md ├── License.md ├── README.md ├── docs ├── Develop.md ├── UnsupportedNodes.md ├── da_dynamo-revit.png └── da_result.png ├── samples └── getting-data-from-revit │ ├── D4DA.bundle.zip │ ├── README.md │ ├── input.zip │ ├── result.zip │ └── sample.rvt └── src ├── .gitignore ├── .idea └── .idea.ExampleImplementation │ └── .idea │ ├── .gitignore │ ├── .name │ ├── encodings.xml │ ├── indexLayout.xml │ ├── inspectionProfiles │ └── Project_Default.xml │ └── vcs.xml ├── DA-DynamoRevit ├── Alias.cs ├── Authentication.cs ├── BucketStorage.cs ├── DA-DynamoRevit.csproj ├── DesignAutomateConfiguration.cs ├── DynamoRevitDesignAutomate.cs └── Engine.cs ├── DA_UnitTest ├── DADynamoRevitTest.cs └── DA_UnitTest.csproj ├── ExampleImplementation.sln ├── ExampleImplementation.sln.DotSettings.user ├── ExampleImplementation ├── .gitignore ├── Example.cs ├── ExampleImplementation.csproj ├── ExampleImplementation.csproj.user ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── xExample.addin ├── dist └── RDADHelper.dll └── front-end ├── .gitignore ├── .idea ├── .gitignore ├── front-end.iml ├── inspectionProfiles │ └── Project_Default.xml ├── jsLinters │ └── jshint.xml ├── modules.xml └── vcs.xml ├── .jshintrc ├── config.js ├── package.json ├── public ├── index.html └── js │ └── ApsDesignAutomation.js ├── routes ├── DesignAutomation.js └── common │ └── oauth.js ├── server.js ├── socket.io.js └── start.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/README.md -------------------------------------------------------------------------------- /docs/Develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/docs/Develop.md -------------------------------------------------------------------------------- /docs/UnsupportedNodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/docs/UnsupportedNodes.md -------------------------------------------------------------------------------- /docs/da_dynamo-revit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/docs/da_dynamo-revit.png -------------------------------------------------------------------------------- /docs/da_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/docs/da_result.png -------------------------------------------------------------------------------- /samples/getting-data-from-revit/D4DA.bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/samples/getting-data-from-revit/D4DA.bundle.zip -------------------------------------------------------------------------------- /samples/getting-data-from-revit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/samples/getting-data-from-revit/README.md -------------------------------------------------------------------------------- /samples/getting-data-from-revit/input.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/samples/getting-data-from-revit/input.zip -------------------------------------------------------------------------------- /samples/getting-data-from-revit/result.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/samples/getting-data-from-revit/result.zip -------------------------------------------------------------------------------- /samples/getting-data-from-revit/sample.rvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/samples/getting-data-from-revit/sample.rvt -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | /packages -------------------------------------------------------------------------------- /src/.idea/.idea.ExampleImplementation/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/.idea/.idea.ExampleImplementation/.idea/.gitignore -------------------------------------------------------------------------------- /src/.idea/.idea.ExampleImplementation/.idea/.name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/.idea/.idea.ExampleImplementation/.idea/.name -------------------------------------------------------------------------------- /src/.idea/.idea.ExampleImplementation/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/.idea/.idea.ExampleImplementation/.idea/encodings.xml -------------------------------------------------------------------------------- /src/.idea/.idea.ExampleImplementation/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/.idea/.idea.ExampleImplementation/.idea/indexLayout.xml -------------------------------------------------------------------------------- /src/.idea/.idea.ExampleImplementation/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/.idea/.idea.ExampleImplementation/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /src/.idea/.idea.ExampleImplementation/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/.idea/.idea.ExampleImplementation/.idea/vcs.xml -------------------------------------------------------------------------------- /src/DA-DynamoRevit/Alias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/Alias.cs -------------------------------------------------------------------------------- /src/DA-DynamoRevit/Authentication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/Authentication.cs -------------------------------------------------------------------------------- /src/DA-DynamoRevit/BucketStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/BucketStorage.cs -------------------------------------------------------------------------------- /src/DA-DynamoRevit/DA-DynamoRevit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/DA-DynamoRevit.csproj -------------------------------------------------------------------------------- /src/DA-DynamoRevit/DesignAutomateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/DesignAutomateConfiguration.cs -------------------------------------------------------------------------------- /src/DA-DynamoRevit/DynamoRevitDesignAutomate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/DynamoRevitDesignAutomate.cs -------------------------------------------------------------------------------- /src/DA-DynamoRevit/Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA-DynamoRevit/Engine.cs -------------------------------------------------------------------------------- /src/DA_UnitTest/DADynamoRevitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA_UnitTest/DADynamoRevitTest.cs -------------------------------------------------------------------------------- /src/DA_UnitTest/DA_UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/DA_UnitTest/DA_UnitTest.csproj -------------------------------------------------------------------------------- /src/ExampleImplementation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation.sln -------------------------------------------------------------------------------- /src/ExampleImplementation.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation.sln.DotSettings.user -------------------------------------------------------------------------------- /src/ExampleImplementation/.gitignore: -------------------------------------------------------------------------------- 1 | .*/ 2 | /bin 3 | /obj 4 | /packages 5 | -------------------------------------------------------------------------------- /src/ExampleImplementation/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation/Example.cs -------------------------------------------------------------------------------- /src/ExampleImplementation/ExampleImplementation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation/ExampleImplementation.csproj -------------------------------------------------------------------------------- /src/ExampleImplementation/ExampleImplementation.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation/ExampleImplementation.csproj.user -------------------------------------------------------------------------------- /src/ExampleImplementation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ExampleImplementation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation/packages.config -------------------------------------------------------------------------------- /src/ExampleImplementation/xExample.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/ExampleImplementation/xExample.addin -------------------------------------------------------------------------------- /src/dist/RDADHelper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/dist/RDADHelper.dll -------------------------------------------------------------------------------- /src/front-end/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.gitignore -------------------------------------------------------------------------------- /src/front-end/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.idea/.gitignore -------------------------------------------------------------------------------- /src/front-end/.idea/front-end.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.idea/front-end.iml -------------------------------------------------------------------------------- /src/front-end/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /src/front-end/.idea/jsLinters/jshint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.idea/jsLinters/jshint.xml -------------------------------------------------------------------------------- /src/front-end/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.idea/modules.xml -------------------------------------------------------------------------------- /src/front-end/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/.idea/vcs.xml -------------------------------------------------------------------------------- /src/front-end/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 9 3 | } -------------------------------------------------------------------------------- /src/front-end/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/config.js -------------------------------------------------------------------------------- /src/front-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/package.json -------------------------------------------------------------------------------- /src/front-end/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/public/index.html -------------------------------------------------------------------------------- /src/front-end/public/js/ApsDesignAutomation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/public/js/ApsDesignAutomation.js -------------------------------------------------------------------------------- /src/front-end/routes/DesignAutomation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/routes/DesignAutomation.js -------------------------------------------------------------------------------- /src/front-end/routes/common/oauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/routes/common/oauth.js -------------------------------------------------------------------------------- /src/front-end/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/server.js -------------------------------------------------------------------------------- /src/front-end/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/socket.io.js -------------------------------------------------------------------------------- /src/front-end/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chuongmep/DA-DynamoRevit/HEAD/src/front-end/start.js --------------------------------------------------------------------------------