├── .gitignore ├── LICENSE ├── README.md └── src └── Essentials ├── NodeModelsEssentials.sln ├── NodeModelsEssentials ├── Controls │ ├── CopyableWatch.xaml │ ├── CopyableWatch.xaml.cs │ ├── MyFirstDynamoControl.xaml │ ├── MyFirstDynamoControl.xaml.cs │ ├── MyWpfView.xaml │ ├── MyWpfView.xaml.cs │ ├── SliderBound.xaml │ ├── SliderBound.xaml.cs │ ├── StateDynamoControl.xaml │ └── StateDynamoControl.xaml.cs ├── EssentialsAstNotReusingFunctionCall.cs ├── EssentialsAstReusingFunctionCall.cs ├── EssentialsDataBridge.cs ├── EssentialsError.cs ├── EssentialsEvents.cs ├── EssentialsMultiOperation.cs ├── EssentialsMultiply.cs ├── EssentialsTimeout.cs ├── GeometryCustomPreview.cs ├── GeometrySurfaceFrom4Points.cs ├── GeometryUVPlanesOnSurface.cs ├── GeometryWobblySurface.cs ├── NodeModelsEssentials.csproj ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── UIButton.cs ├── UIButtonFunction.cs ├── UICopyableWatch.cs ├── UISlider.cs ├── UISliderBound.cs ├── UIState.cs ├── app.config ├── images │ └── logo.png ├── packages.config └── pkg.json ├── NodeModelsEssentialsFunctions ├── App.config ├── NodeModelsEssentialsFunctions.cs ├── NodeModelsEssentialsFunctions.csproj ├── Properties │ └── AssemblyInfo.cs ├── README.md ├── images │ └── logo.png └── packages.config └── samples ├── 01_MovingSphere.dyn ├── 02_Surface.dyn └── 03_SurfaceRotation.dyn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/README.md -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials.sln -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/CopyableWatch.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/CopyableWatch.xaml -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/CopyableWatch.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/CopyableWatch.xaml.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/MyFirstDynamoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/MyFirstDynamoControl.xaml -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/MyFirstDynamoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/MyFirstDynamoControl.xaml.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/MyWpfView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/MyWpfView.xaml -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/MyWpfView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/MyWpfView.xaml.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/SliderBound.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/SliderBound.xaml -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/SliderBound.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/SliderBound.xaml.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/StateDynamoControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/StateDynamoControl.xaml -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Controls/StateDynamoControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Controls/StateDynamoControl.xaml.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsAstNotReusingFunctionCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsAstNotReusingFunctionCall.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsAstReusingFunctionCall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsAstReusingFunctionCall.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsDataBridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsDataBridge.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsError.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsEvents.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsMultiOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsMultiOperation.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsMultiply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsMultiply.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/EssentialsTimeout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/EssentialsTimeout.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/GeometryCustomPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/GeometryCustomPreview.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/GeometrySurfaceFrom4Points.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/GeometrySurfaceFrom4Points.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/GeometryUVPlanesOnSurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/GeometryUVPlanesOnSurface.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/GeometryWobblySurface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/GeometryWobblySurface.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/NodeModelsEssentials.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/NodeModelsEssentials.csproj -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/README.md -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/UIButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/UIButton.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/UIButtonFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/UIButtonFunction.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/UICopyableWatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/UICopyableWatch.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/UISlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/UISlider.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/UISliderBound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/UISliderBound.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/UIState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/UIState.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/app.config -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/images/logo.png -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/packages.config -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentials/pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentials/pkg.json -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/App.config -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/NodeModelsEssentialsFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/NodeModelsEssentialsFunctions.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/NodeModelsEssentialsFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/NodeModelsEssentialsFunctions.csproj -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/README.md -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/images/logo.png -------------------------------------------------------------------------------- /src/Essentials/NodeModelsEssentialsFunctions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/NodeModelsEssentialsFunctions/packages.config -------------------------------------------------------------------------------- /src/Essentials/samples/01_MovingSphere.dyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/samples/01_MovingSphere.dyn -------------------------------------------------------------------------------- /src/Essentials/samples/02_Surface.dyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/samples/02_Surface.dyn -------------------------------------------------------------------------------- /src/Essentials/samples/03_SurfaceRotation.dyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nonoesp/DynamoNodeModelsEssentials/HEAD/src/Essentials/samples/03_SurfaceRotation.dyn --------------------------------------------------------------------------------