├── .editorconfig ├── .gitattributes ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── Components ├── Materialize.cs ├── ModuleConstruct.cs ├── ModuleConstructEmpty.cs ├── ModuleDeconstruct.cs ├── RuleAssemble.cs ├── RuleAssembleObsolete1245.cs ├── RuleAtBoundaryContruct.cs ├── RuleAtBoundaryFromPoint.cs ├── RuleExplicit2Lists.cs ├── RuleExplicitConstruct.cs ├── RuleExplicitDeconstruct.cs ├── RuleExplicitFromCurve.cs ├── RuleExplicitTwoSets.cs ├── RuleFromSlots.cs ├── RuleIndifferentConstruct.cs ├── RuleIndifferentFromPoint.cs ├── RuleIndifferentUnused.cs ├── RuleIsEqual.cs ├── RuleIsExplicit.cs ├── RuleIsTyped.cs ├── RulePreview.cs ├── RuleSuggest.cs ├── RuleTypedConstruct.cs ├── RuleTypedDeconstruct.cs ├── RuleTypedFromPoint.cs ├── RuleUnwrap.cs ├── RulesCollect.cs ├── SliceGeometry.cs ├── SlotConstructWithAll.cs ├── SlotConstructWithModules.cs ├── SlotDeconstruct.cs ├── SlotDeconstructObsolete1236.cs ├── SlotsAddBoundary.cs ├── SlotsAreBoundary.cs ├── SlotsFromGeometry.cs ├── Solver.cs ├── SolverObsolete1235.cs └── SolverObsolete1238.cs ├── Config.cs ├── DynamicLinkingDependencies ├── GH_IO.dll ├── Grasshopper.dll └── RhinoCommon.dll ├── LICENSE.md ├── Monoceros.csproj ├── Monoceros.sln ├── MonocerosInfo.cs ├── Parameters ├── ConnectorIndexParameter.cs ├── ModuleNameParameter.cs ├── ModuleParameter.cs ├── RuleParameter.cs └── SlotParameter.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── README.html ├── README.md ├── Resources ├── connector-index-parameter.png ├── materialize.png ├── module-construct.png ├── module-deconstruct.png ├── module-empty.png ├── module-name-parameter.png ├── module-parameter.png ├── module-transparent.png ├── monoceros24.png ├── populate.png ├── rule-assemble.png ├── rule-equals.png ├── rule-explicit-construct-2-lists.png ├── rule-explicit-construct.png ├── rule-explicit-deconstruct.png ├── rule-explicit-transparent.png ├── rule-general-parameter.png ├── rule-general-transparent.png ├── rule-indifferent-construct.png ├── rule-indifferent-unused.png ├── rule-indifferent.png ├── rule-is-explicit.png ├── rule-is-typed.png ├── rule-out-construct.png ├── rule-out.png ├── rule-suggest.png ├── rule-typed-construct.png ├── rule-typed-deconstruct.png ├── rule-typed-transparent.png ├── rules-collect.png ├── rules-from-slots.png ├── rules-unwrap.png ├── slot-add-boundary-2.png ├── slot-add-boundary.png ├── slot-all.png ├── slot-are-boundary.png ├── slot-construct.png ├── slot-deconstruct.png ├── slot-parameter.png ├── slot-transparent.png ├── slots-from-geometry.png └── solver.png ├── Types ├── ConnectorIndex.cs ├── Direction.cs ├── Module.cs ├── ModuleName.cs ├── Point3i.cs ├── Rule.cs └── Slot.cs ├── bin ├── Monoceros.pdb ├── monoceros-wfc-0.2.0.dll └── monoceros-wfc-0.2.0.pdb ├── examples ├── allowing-disallowing-modules-based-on-attractor │ ├── allowing-disallowing-modules-based-on-attractor-all.jpg │ ├── allowing-disallowing-modules-based-on-attractor-complete-setup.jpg │ ├── allowing-disallowing-modules-based-on-attractor-limited.jpg │ ├── allowing-disallowing-modules-based-on-attractor.gh │ └── allowing-disallowing-modules-based-on-attractor.png ├── allowing-disallowing-modules-in-certain-area │ ├── allowing-disallowing-modules-in-certain-area-all.jpg │ ├── allowing-disallowing-modules-in-certain-area-complete-setup.jpg │ ├── allowing-disallowing-modules-in-certain-area-limited.jpg │ ├── allowing-disallowing-modules-in-certain-area.gh │ └── allowing-disallowing-modules-in-certain-area.png ├── allowing-modules-based-on-multiple-attractor-gradients │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-1.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-2.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-3.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-4.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-5.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean.gh │ ├── allowing-modules-based-on-multiple-attractor-gradients-2-clean.png │ ├── allowing-modules-based-on-multiple-attractor-gradients-clean-module-1.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-clean-module-2.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-clean-module-3.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-clean-module-4.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-clean-module-5.jpg │ ├── allowing-modules-based-on-multiple-attractor-gradients-clean.gh │ └── allowing-modules-based-on-multiple-attractor-gradients-clean.png ├── allowing-modules-based-on-vertical-gradient │ ├── allowing-modules-based-on-vertical-gradient-module-1.jpg │ ├── allowing-modules-based-on-vertical-gradient-module-2.jpg │ ├── allowing-modules-based-on-vertical-gradient-module-3.jpg │ ├── allowing-modules-based-on-vertical-gradient-module-4.jpg │ ├── allowing-modules-based-on-vertical-gradient.gh │ └── allowing-modules-based-on-vertical-gradient.png ├── allowing-modules-to-be-at-the-boundary-of-the-envelope │ ├── allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example-screenshot.jpg │ ├── allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example.gh │ ├── allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example.png │ ├── allowing-modules-to-be-at-the-boundary-of-the-envelope-screenshot.jpg │ ├── allowing-modules-to-be-at-the-boundary-of-the-envelope.3dm │ ├── allowing-modules-to-be-at-the-boundary-of-the-envelope.gh │ └── allowing-modules-to-be-at-the-boundary-of-the-envelope.png ├── disallowing-modules-in-existing-slots │ ├── disallowing-modules-in-existing-slots-screenshot.jpg │ ├── disallowing-modules-in-existing-slots.gh │ └── disallowing-modules-in-existing-slots.png ├── disallowing-rules │ ├── disallowing-rules-allowed.jpg │ ├── disallowing-rules-disallowed.jpg │ ├── disallowing-rules-result.jpg │ ├── disallowing-rules.gh │ └── disallowing-rules.png ├── empty-module-and-additional-explicit-rules │ ├── empty-module-and-additional-explicit-rules-screenshot.jpg │ ├── empty-module-and-additional-explicit-rules.gh │ └── empty-module-and-additional-explicit-rules.png ├── enforcing-specific-modules-at-the-boundary-of-the-envelope │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple-2.gh │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple-screenshot.jpg │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple.gh │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple.png │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope-screenshot.jpg │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope.3dm │ ├── enforcing-specific-modules-at-the-boundary-of-the-envelope.gh │ └── enforcing-specific-modules-at-the-boundary-of-the-envelope.png ├── example-mondieu │ ├── example_01-mondieu.3dm │ └── example_01-mondieu.gh ├── explicit-rule-from-a-literal │ ├── explicit-rule-from-a-literal.gh │ └── explicit-rule-from-a-literal.png ├── explicit-rule-from-components │ ├── explicit-rule-from-components.gh │ └── explicit-rule-from-components.png ├── explicit-rule-from-curve │ ├── explicit-rule-from-curve-screenshot.jpg │ ├── explicit-rule-from-curve.gh │ └── explicit-rule-from-curve.png ├── explicit-rules-with-all-connectors-of-empty │ ├── explicit-rules-with-all-connectors-of-empty-screenshot.jpg │ ├── explicit-rules-with-all-connectors-of-empty.gh │ └── explicit-rules-with-all-connectors-of-empty.png ├── growing-the-boundary-of-the-envelope │ ├── growing-the-boundary-of-the-envelope-screenshot.jpg │ ├── growing-the-boundary-of-the-envelope.gh │ └── growing-the-boundary-of-the-envelope.png ├── module-part-points-created-manually-from-geometry │ ├── module-part-points-created-manually-from-geometry-screenshot.jpg │ ├── module-part-points-created-manually-from-geometry.gh │ └── module-part-points-created-manually-from-geometry.png ├── module-part-points-created-manually │ ├── module-part-points-created-manually-literal.png │ ├── module-part-points-created-manually-param.png │ ├── module-part-points-created-manually.gh │ └── module-part-points-created-manually.jpg ├── module-part-points-created-with-slice-geometry │ ├── module-part-points-created-with-slice-geometry-screenshot.jpg │ ├── module-part-points-created-with-slice-geometry.gh │ └── module-part-points-created-with-slice-geometry.png ├── multiple-different-empty-modules │ ├── multiple-different-empty-modules-screenshot.jpg │ ├── multiple-different-empty-modules.gh │ └── multiple-different-empty-modules.png ├── proto-results-and-custom-materialization │ ├── proto-results-and-custom-materialization-modules-screenshot.png │ ├── proto-results-and-custom-materialization-single-element-screenshot.png │ ├── proto-results-and-custom-materialization.gh │ ├── proto-results-and-custom-materialization.png │ ├── without-proto-results-and-custom-materialization-modules-screenshot.png │ ├── without-proto-results-and-custom-materialization-single-element-screenshot.png │ ├── without-proto-results-and-custom-materialization.gh │ └── without-proto-results-and-custom-materialization.png ├── roulette-choosing-a-binary-weighted-option │ ├── roulette-choosing-a-binary-weighted-option.gh │ └── roulette-choosing-a-binary-weighted-option.png ├── roulette-choosing-more-weighted-options-from-multiple-choices │ ├── roulette-choosing-more-weighted-options-from-multiple-choices.gh │ └── roulette-choosing-more-weighted-options-from-multiple-choices.png ├── roulette-choosing-one-weighted-option-from-multiple-choices │ ├── roulette-choosing-one-weighted-option-from-multiple-choices.gh │ └── roulette-choosing-one-weighted-option-from-multiple-choices.png ├── slots-from-manually-generated-points-from-geometry │ ├── slots-from-manually-generated-points-from-geometry.gh │ └── slots-from-manually-generated-points-from-geometry.png ├── slots-from-manually-generated-points │ ├── slots-from-manually-generated-points.gh │ └── slots-from-manually-generated-points.png ├── slots-from-slice-geometry-curves │ ├── slots-from-slice-geometry-curves.gh │ └── slots-from-slice-geometry-curves.png ├── slots-from-slice-geometry-mesh-and-brep-volumes │ ├── slots-from-slice-geometry-mesh-and-brep-volumes-0.jpg │ ├── slots-from-slice-geometry-mesh-and-brep-volumes-1.jpg │ ├── slots-from-slice-geometry-mesh-and-brep-volumes-2.jpg │ ├── slots-from-slice-geometry-mesh-and-brep-volumes-3.jpg │ ├── slots-from-slice-geometry-mesh-and-brep-volumes.gh │ └── slots-from-slice-geometry-mesh-and-brep-volumes.png ├── slots-from-slice-geometry-miscellaneous-geometry │ ├── slots-from-slice-geometry-miscellaneous-geometry.gh │ └── slots-from-slice-geometry-miscellaneous-geometry.png ├── slots-from-slice-geometry-points │ ├── slots-from-slice-geometry-points.gh │ └── slots-from-slice-geometry-points.png ├── slots-from-slice-geometry-surfaces │ ├── slots-from-slice-geometry-surfaces.gh │ └── slots-from-slice-geometry-surfaces.png ├── typed-rule-from-a-literal │ ├── typed-rule-from-a-literal.gh │ └── typed-rule-from-a-literal.png ├── typed-rule-from-components-using-module-as-name │ ├── typed-rule-from-components-using-module-as-name.gh │ └── typed-rule-from-components-using-module-as-name.png ├── typed-rule-from-components │ ├── typed-rule-from-components.gh │ └── typed-rule-from-components.png └── typed-rule-from-point-tag │ ├── typed-rule-from-point-tag-screenshot.jpg │ ├── typed-rule-from-point-tag.gh │ └── typed-rule-from-point-tag.png ├── manifest.yml ├── notes ├── packages.config └── readme-assets ├── bare-minimum-screenshot.jpg ├── bare-minimum.png ├── fpu.jpg ├── grasshopper-panel.png ├── indifferent_rules-component.png ├── indifferent_rules-literal.png ├── indifferent_rules-manual.png ├── monoceros32.png ├── monoceros512.png ├── multiple-modules-explicit-rules.png ├── multiple-modules-tree-explicit-rules-a.jpg ├── multiple-modules-tree-explicit-rules-b.jpg ├── multiple-modules-tree-explicit-rules.png ├── non-uniform-process.jpg ├── non-uniform-result.jpg └── non-uniform.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Components/Materialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/Materialize.cs -------------------------------------------------------------------------------- /Components/ModuleConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/ModuleConstruct.cs -------------------------------------------------------------------------------- /Components/ModuleConstructEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/ModuleConstructEmpty.cs -------------------------------------------------------------------------------- /Components/ModuleDeconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/ModuleDeconstruct.cs -------------------------------------------------------------------------------- /Components/RuleAssemble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleAssemble.cs -------------------------------------------------------------------------------- /Components/RuleAssembleObsolete1245.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleAssembleObsolete1245.cs -------------------------------------------------------------------------------- /Components/RuleAtBoundaryContruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleAtBoundaryContruct.cs -------------------------------------------------------------------------------- /Components/RuleAtBoundaryFromPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleAtBoundaryFromPoint.cs -------------------------------------------------------------------------------- /Components/RuleExplicit2Lists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleExplicit2Lists.cs -------------------------------------------------------------------------------- /Components/RuleExplicitConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleExplicitConstruct.cs -------------------------------------------------------------------------------- /Components/RuleExplicitDeconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleExplicitDeconstruct.cs -------------------------------------------------------------------------------- /Components/RuleExplicitFromCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleExplicitFromCurve.cs -------------------------------------------------------------------------------- /Components/RuleExplicitTwoSets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleExplicitTwoSets.cs -------------------------------------------------------------------------------- /Components/RuleFromSlots.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleFromSlots.cs -------------------------------------------------------------------------------- /Components/RuleIndifferentConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleIndifferentConstruct.cs -------------------------------------------------------------------------------- /Components/RuleIndifferentFromPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleIndifferentFromPoint.cs -------------------------------------------------------------------------------- /Components/RuleIndifferentUnused.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleIndifferentUnused.cs -------------------------------------------------------------------------------- /Components/RuleIsEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleIsEqual.cs -------------------------------------------------------------------------------- /Components/RuleIsExplicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleIsExplicit.cs -------------------------------------------------------------------------------- /Components/RuleIsTyped.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleIsTyped.cs -------------------------------------------------------------------------------- /Components/RulePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RulePreview.cs -------------------------------------------------------------------------------- /Components/RuleSuggest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleSuggest.cs -------------------------------------------------------------------------------- /Components/RuleTypedConstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleTypedConstruct.cs -------------------------------------------------------------------------------- /Components/RuleTypedDeconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleTypedDeconstruct.cs -------------------------------------------------------------------------------- /Components/RuleTypedFromPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleTypedFromPoint.cs -------------------------------------------------------------------------------- /Components/RuleUnwrap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RuleUnwrap.cs -------------------------------------------------------------------------------- /Components/RulesCollect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/RulesCollect.cs -------------------------------------------------------------------------------- /Components/SliceGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SliceGeometry.cs -------------------------------------------------------------------------------- /Components/SlotConstructWithAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotConstructWithAll.cs -------------------------------------------------------------------------------- /Components/SlotConstructWithModules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotConstructWithModules.cs -------------------------------------------------------------------------------- /Components/SlotDeconstruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotDeconstruct.cs -------------------------------------------------------------------------------- /Components/SlotDeconstructObsolete1236.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotDeconstructObsolete1236.cs -------------------------------------------------------------------------------- /Components/SlotsAddBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotsAddBoundary.cs -------------------------------------------------------------------------------- /Components/SlotsAreBoundary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotsAreBoundary.cs -------------------------------------------------------------------------------- /Components/SlotsFromGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SlotsFromGeometry.cs -------------------------------------------------------------------------------- /Components/Solver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/Solver.cs -------------------------------------------------------------------------------- /Components/SolverObsolete1235.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SolverObsolete1235.cs -------------------------------------------------------------------------------- /Components/SolverObsolete1238.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Components/SolverObsolete1238.cs -------------------------------------------------------------------------------- /Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Config.cs -------------------------------------------------------------------------------- /DynamicLinkingDependencies/GH_IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/DynamicLinkingDependencies/GH_IO.dll -------------------------------------------------------------------------------- /DynamicLinkingDependencies/Grasshopper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/DynamicLinkingDependencies/Grasshopper.dll -------------------------------------------------------------------------------- /DynamicLinkingDependencies/RhinoCommon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/DynamicLinkingDependencies/RhinoCommon.dll -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Monoceros.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Monoceros.csproj -------------------------------------------------------------------------------- /Monoceros.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Monoceros.sln -------------------------------------------------------------------------------- /MonocerosInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/MonocerosInfo.cs -------------------------------------------------------------------------------- /Parameters/ConnectorIndexParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Parameters/ConnectorIndexParameter.cs -------------------------------------------------------------------------------- /Parameters/ModuleNameParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Parameters/ModuleNameParameter.cs -------------------------------------------------------------------------------- /Parameters/ModuleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Parameters/ModuleParameter.cs -------------------------------------------------------------------------------- /Parameters/RuleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Parameters/RuleParameter.cs -------------------------------------------------------------------------------- /Parameters/SlotParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Parameters/SlotParameter.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/README.md -------------------------------------------------------------------------------- /Resources/connector-index-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/connector-index-parameter.png -------------------------------------------------------------------------------- /Resources/materialize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/materialize.png -------------------------------------------------------------------------------- /Resources/module-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/module-construct.png -------------------------------------------------------------------------------- /Resources/module-deconstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/module-deconstruct.png -------------------------------------------------------------------------------- /Resources/module-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/module-empty.png -------------------------------------------------------------------------------- /Resources/module-name-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/module-name-parameter.png -------------------------------------------------------------------------------- /Resources/module-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/module-parameter.png -------------------------------------------------------------------------------- /Resources/module-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/module-transparent.png -------------------------------------------------------------------------------- /Resources/monoceros24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/monoceros24.png -------------------------------------------------------------------------------- /Resources/populate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/populate.png -------------------------------------------------------------------------------- /Resources/rule-assemble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-assemble.png -------------------------------------------------------------------------------- /Resources/rule-equals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-equals.png -------------------------------------------------------------------------------- /Resources/rule-explicit-construct-2-lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-explicit-construct-2-lists.png -------------------------------------------------------------------------------- /Resources/rule-explicit-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-explicit-construct.png -------------------------------------------------------------------------------- /Resources/rule-explicit-deconstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-explicit-deconstruct.png -------------------------------------------------------------------------------- /Resources/rule-explicit-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-explicit-transparent.png -------------------------------------------------------------------------------- /Resources/rule-general-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-general-parameter.png -------------------------------------------------------------------------------- /Resources/rule-general-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-general-transparent.png -------------------------------------------------------------------------------- /Resources/rule-indifferent-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-indifferent-construct.png -------------------------------------------------------------------------------- /Resources/rule-indifferent-unused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-indifferent-unused.png -------------------------------------------------------------------------------- /Resources/rule-indifferent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-indifferent.png -------------------------------------------------------------------------------- /Resources/rule-is-explicit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-is-explicit.png -------------------------------------------------------------------------------- /Resources/rule-is-typed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-is-typed.png -------------------------------------------------------------------------------- /Resources/rule-out-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-out-construct.png -------------------------------------------------------------------------------- /Resources/rule-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-out.png -------------------------------------------------------------------------------- /Resources/rule-suggest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-suggest.png -------------------------------------------------------------------------------- /Resources/rule-typed-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-typed-construct.png -------------------------------------------------------------------------------- /Resources/rule-typed-deconstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-typed-deconstruct.png -------------------------------------------------------------------------------- /Resources/rule-typed-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rule-typed-transparent.png -------------------------------------------------------------------------------- /Resources/rules-collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rules-collect.png -------------------------------------------------------------------------------- /Resources/rules-from-slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rules-from-slots.png -------------------------------------------------------------------------------- /Resources/rules-unwrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/rules-unwrap.png -------------------------------------------------------------------------------- /Resources/slot-add-boundary-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-add-boundary-2.png -------------------------------------------------------------------------------- /Resources/slot-add-boundary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-add-boundary.png -------------------------------------------------------------------------------- /Resources/slot-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-all.png -------------------------------------------------------------------------------- /Resources/slot-are-boundary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-are-boundary.png -------------------------------------------------------------------------------- /Resources/slot-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-construct.png -------------------------------------------------------------------------------- /Resources/slot-deconstruct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-deconstruct.png -------------------------------------------------------------------------------- /Resources/slot-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-parameter.png -------------------------------------------------------------------------------- /Resources/slot-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slot-transparent.png -------------------------------------------------------------------------------- /Resources/slots-from-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/slots-from-geometry.png -------------------------------------------------------------------------------- /Resources/solver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Resources/solver.png -------------------------------------------------------------------------------- /Types/ConnectorIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/ConnectorIndex.cs -------------------------------------------------------------------------------- /Types/Direction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/Direction.cs -------------------------------------------------------------------------------- /Types/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/Module.cs -------------------------------------------------------------------------------- /Types/ModuleName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/ModuleName.cs -------------------------------------------------------------------------------- /Types/Point3i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/Point3i.cs -------------------------------------------------------------------------------- /Types/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/Rule.cs -------------------------------------------------------------------------------- /Types/Slot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/Types/Slot.cs -------------------------------------------------------------------------------- /bin/Monoceros.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/bin/Monoceros.pdb -------------------------------------------------------------------------------- /bin/monoceros-wfc-0.2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/bin/monoceros-wfc-0.2.0.dll -------------------------------------------------------------------------------- /bin/monoceros-wfc-0.2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/bin/monoceros-wfc-0.2.0.pdb -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor-all.jpg -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor-complete-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor-complete-setup.jpg -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor-limited.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor-limited.jpg -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor.gh -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-based-on-attractor/allowing-disallowing-modules-based-on-attractor.png -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area-all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area-all.jpg -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area-complete-setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area-complete-setup.jpg -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area-limited.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area-limited.jpg -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area.gh -------------------------------------------------------------------------------- /examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-disallowing-modules-in-certain-area/allowing-disallowing-modules-in-certain-area.png -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-1.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-2.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-3.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-4.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean-module-5.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean.gh -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-2-clean.png -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-1.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-2.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-3.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-4.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean-module-5.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean.gh -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-multiple-attractor-gradients/allowing-modules-based-on-multiple-attractor-gradients-clean.png -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-1.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-2.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-3.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient-module-4.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient.gh -------------------------------------------------------------------------------- /examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-based-on-vertical-gradient/allowing-modules-based-on-vertical-gradient.png -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example-screenshot.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example.gh -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-full-example.png -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope-screenshot.jpg -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope.3dm -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope.gh -------------------------------------------------------------------------------- /examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/allowing-modules-to-be-at-the-boundary-of-the-envelope/allowing-modules-to-be-at-the-boundary-of-the-envelope.png -------------------------------------------------------------------------------- /examples/disallowing-modules-in-existing-slots/disallowing-modules-in-existing-slots-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-modules-in-existing-slots/disallowing-modules-in-existing-slots-screenshot.jpg -------------------------------------------------------------------------------- /examples/disallowing-modules-in-existing-slots/disallowing-modules-in-existing-slots.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-modules-in-existing-slots/disallowing-modules-in-existing-slots.gh -------------------------------------------------------------------------------- /examples/disallowing-modules-in-existing-slots/disallowing-modules-in-existing-slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-modules-in-existing-slots/disallowing-modules-in-existing-slots.png -------------------------------------------------------------------------------- /examples/disallowing-rules/disallowing-rules-allowed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-rules/disallowing-rules-allowed.jpg -------------------------------------------------------------------------------- /examples/disallowing-rules/disallowing-rules-disallowed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-rules/disallowing-rules-disallowed.jpg -------------------------------------------------------------------------------- /examples/disallowing-rules/disallowing-rules-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-rules/disallowing-rules-result.jpg -------------------------------------------------------------------------------- /examples/disallowing-rules/disallowing-rules.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-rules/disallowing-rules.gh -------------------------------------------------------------------------------- /examples/disallowing-rules/disallowing-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/disallowing-rules/disallowing-rules.png -------------------------------------------------------------------------------- /examples/empty-module-and-additional-explicit-rules/empty-module-and-additional-explicit-rules-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/empty-module-and-additional-explicit-rules/empty-module-and-additional-explicit-rules-screenshot.jpg -------------------------------------------------------------------------------- /examples/empty-module-and-additional-explicit-rules/empty-module-and-additional-explicit-rules.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/empty-module-and-additional-explicit-rules/empty-module-and-additional-explicit-rules.gh -------------------------------------------------------------------------------- /examples/empty-module-and-additional-explicit-rules/empty-module-and-additional-explicit-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/empty-module-and-additional-explicit-rules/empty-module-and-additional-explicit-rules.png -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple-2.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple-2.gh -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple-screenshot.jpg -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple.gh -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-multiple.png -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope-screenshot.jpg -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope.3dm -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope.gh -------------------------------------------------------------------------------- /examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/enforcing-specific-modules-at-the-boundary-of-the-envelope/enforcing-specific-modules-at-the-boundary-of-the-envelope.png -------------------------------------------------------------------------------- /examples/example-mondieu/example_01-mondieu.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/example-mondieu/example_01-mondieu.3dm -------------------------------------------------------------------------------- /examples/example-mondieu/example_01-mondieu.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/example-mondieu/example_01-mondieu.gh -------------------------------------------------------------------------------- /examples/explicit-rule-from-a-literal/explicit-rule-from-a-literal.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-a-literal/explicit-rule-from-a-literal.gh -------------------------------------------------------------------------------- /examples/explicit-rule-from-a-literal/explicit-rule-from-a-literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-a-literal/explicit-rule-from-a-literal.png -------------------------------------------------------------------------------- /examples/explicit-rule-from-components/explicit-rule-from-components.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-components/explicit-rule-from-components.gh -------------------------------------------------------------------------------- /examples/explicit-rule-from-components/explicit-rule-from-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-components/explicit-rule-from-components.png -------------------------------------------------------------------------------- /examples/explicit-rule-from-curve/explicit-rule-from-curve-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-curve/explicit-rule-from-curve-screenshot.jpg -------------------------------------------------------------------------------- /examples/explicit-rule-from-curve/explicit-rule-from-curve.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-curve/explicit-rule-from-curve.gh -------------------------------------------------------------------------------- /examples/explicit-rule-from-curve/explicit-rule-from-curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rule-from-curve/explicit-rule-from-curve.png -------------------------------------------------------------------------------- /examples/explicit-rules-with-all-connectors-of-empty/explicit-rules-with-all-connectors-of-empty-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rules-with-all-connectors-of-empty/explicit-rules-with-all-connectors-of-empty-screenshot.jpg -------------------------------------------------------------------------------- /examples/explicit-rules-with-all-connectors-of-empty/explicit-rules-with-all-connectors-of-empty.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rules-with-all-connectors-of-empty/explicit-rules-with-all-connectors-of-empty.gh -------------------------------------------------------------------------------- /examples/explicit-rules-with-all-connectors-of-empty/explicit-rules-with-all-connectors-of-empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/explicit-rules-with-all-connectors-of-empty/explicit-rules-with-all-connectors-of-empty.png -------------------------------------------------------------------------------- /examples/growing-the-boundary-of-the-envelope/growing-the-boundary-of-the-envelope-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/growing-the-boundary-of-the-envelope/growing-the-boundary-of-the-envelope-screenshot.jpg -------------------------------------------------------------------------------- /examples/growing-the-boundary-of-the-envelope/growing-the-boundary-of-the-envelope.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/growing-the-boundary-of-the-envelope/growing-the-boundary-of-the-envelope.gh -------------------------------------------------------------------------------- /examples/growing-the-boundary-of-the-envelope/growing-the-boundary-of-the-envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/growing-the-boundary-of-the-envelope/growing-the-boundary-of-the-envelope.png -------------------------------------------------------------------------------- /examples/module-part-points-created-manually-from-geometry/module-part-points-created-manually-from-geometry-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually-from-geometry/module-part-points-created-manually-from-geometry-screenshot.jpg -------------------------------------------------------------------------------- /examples/module-part-points-created-manually-from-geometry/module-part-points-created-manually-from-geometry.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually-from-geometry/module-part-points-created-manually-from-geometry.gh -------------------------------------------------------------------------------- /examples/module-part-points-created-manually-from-geometry/module-part-points-created-manually-from-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually-from-geometry/module-part-points-created-manually-from-geometry.png -------------------------------------------------------------------------------- /examples/module-part-points-created-manually/module-part-points-created-manually-literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually/module-part-points-created-manually-literal.png -------------------------------------------------------------------------------- /examples/module-part-points-created-manually/module-part-points-created-manually-param.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually/module-part-points-created-manually-param.png -------------------------------------------------------------------------------- /examples/module-part-points-created-manually/module-part-points-created-manually.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually/module-part-points-created-manually.gh -------------------------------------------------------------------------------- /examples/module-part-points-created-manually/module-part-points-created-manually.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-manually/module-part-points-created-manually.jpg -------------------------------------------------------------------------------- /examples/module-part-points-created-with-slice-geometry/module-part-points-created-with-slice-geometry-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-with-slice-geometry/module-part-points-created-with-slice-geometry-screenshot.jpg -------------------------------------------------------------------------------- /examples/module-part-points-created-with-slice-geometry/module-part-points-created-with-slice-geometry.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-with-slice-geometry/module-part-points-created-with-slice-geometry.gh -------------------------------------------------------------------------------- /examples/module-part-points-created-with-slice-geometry/module-part-points-created-with-slice-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/module-part-points-created-with-slice-geometry/module-part-points-created-with-slice-geometry.png -------------------------------------------------------------------------------- /examples/multiple-different-empty-modules/multiple-different-empty-modules-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/multiple-different-empty-modules/multiple-different-empty-modules-screenshot.jpg -------------------------------------------------------------------------------- /examples/multiple-different-empty-modules/multiple-different-empty-modules.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/multiple-different-empty-modules/multiple-different-empty-modules.gh -------------------------------------------------------------------------------- /examples/multiple-different-empty-modules/multiple-different-empty-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/multiple-different-empty-modules/multiple-different-empty-modules.png -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization-modules-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization-modules-screenshot.png -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization-single-element-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization-single-element-screenshot.png -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization.gh -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/proto-results-and-custom-materialization.png -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization-modules-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization-modules-screenshot.png -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization-single-element-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization-single-element-screenshot.png -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization.gh -------------------------------------------------------------------------------- /examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/proto-results-and-custom-materialization/without-proto-results-and-custom-materialization.png -------------------------------------------------------------------------------- /examples/roulette-choosing-a-binary-weighted-option/roulette-choosing-a-binary-weighted-option.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/roulette-choosing-a-binary-weighted-option/roulette-choosing-a-binary-weighted-option.gh -------------------------------------------------------------------------------- /examples/roulette-choosing-a-binary-weighted-option/roulette-choosing-a-binary-weighted-option.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/roulette-choosing-a-binary-weighted-option/roulette-choosing-a-binary-weighted-option.png -------------------------------------------------------------------------------- /examples/roulette-choosing-more-weighted-options-from-multiple-choices/roulette-choosing-more-weighted-options-from-multiple-choices.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/roulette-choosing-more-weighted-options-from-multiple-choices/roulette-choosing-more-weighted-options-from-multiple-choices.gh -------------------------------------------------------------------------------- /examples/roulette-choosing-more-weighted-options-from-multiple-choices/roulette-choosing-more-weighted-options-from-multiple-choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/roulette-choosing-more-weighted-options-from-multiple-choices/roulette-choosing-more-weighted-options-from-multiple-choices.png -------------------------------------------------------------------------------- /examples/roulette-choosing-one-weighted-option-from-multiple-choices/roulette-choosing-one-weighted-option-from-multiple-choices.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/roulette-choosing-one-weighted-option-from-multiple-choices/roulette-choosing-one-weighted-option-from-multiple-choices.gh -------------------------------------------------------------------------------- /examples/roulette-choosing-one-weighted-option-from-multiple-choices/roulette-choosing-one-weighted-option-from-multiple-choices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/roulette-choosing-one-weighted-option-from-multiple-choices/roulette-choosing-one-weighted-option-from-multiple-choices.png -------------------------------------------------------------------------------- /examples/slots-from-manually-generated-points-from-geometry/slots-from-manually-generated-points-from-geometry.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-manually-generated-points-from-geometry/slots-from-manually-generated-points-from-geometry.gh -------------------------------------------------------------------------------- /examples/slots-from-manually-generated-points-from-geometry/slots-from-manually-generated-points-from-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-manually-generated-points-from-geometry/slots-from-manually-generated-points-from-geometry.png -------------------------------------------------------------------------------- /examples/slots-from-manually-generated-points/slots-from-manually-generated-points.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-manually-generated-points/slots-from-manually-generated-points.gh -------------------------------------------------------------------------------- /examples/slots-from-manually-generated-points/slots-from-manually-generated-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-manually-generated-points/slots-from-manually-generated-points.png -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-curves/slots-from-slice-geometry-curves.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-curves/slots-from-slice-geometry-curves.gh -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-curves/slots-from-slice-geometry-curves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-curves/slots-from-slice-geometry-curves.png -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-0.jpg -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-1.jpg -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-2.jpg -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes-3.jpg -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes.gh -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-mesh-and-brep-volumes/slots-from-slice-geometry-mesh-and-brep-volumes.png -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-miscellaneous-geometry/slots-from-slice-geometry-miscellaneous-geometry.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-miscellaneous-geometry/slots-from-slice-geometry-miscellaneous-geometry.gh -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-miscellaneous-geometry/slots-from-slice-geometry-miscellaneous-geometry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-miscellaneous-geometry/slots-from-slice-geometry-miscellaneous-geometry.png -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-points/slots-from-slice-geometry-points.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-points/slots-from-slice-geometry-points.gh -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-points/slots-from-slice-geometry-points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-points/slots-from-slice-geometry-points.png -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-surfaces/slots-from-slice-geometry-surfaces.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-surfaces/slots-from-slice-geometry-surfaces.gh -------------------------------------------------------------------------------- /examples/slots-from-slice-geometry-surfaces/slots-from-slice-geometry-surfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/slots-from-slice-geometry-surfaces/slots-from-slice-geometry-surfaces.png -------------------------------------------------------------------------------- /examples/typed-rule-from-a-literal/typed-rule-from-a-literal.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-a-literal/typed-rule-from-a-literal.gh -------------------------------------------------------------------------------- /examples/typed-rule-from-a-literal/typed-rule-from-a-literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-a-literal/typed-rule-from-a-literal.png -------------------------------------------------------------------------------- /examples/typed-rule-from-components-using-module-as-name/typed-rule-from-components-using-module-as-name.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-components-using-module-as-name/typed-rule-from-components-using-module-as-name.gh -------------------------------------------------------------------------------- /examples/typed-rule-from-components-using-module-as-name/typed-rule-from-components-using-module-as-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-components-using-module-as-name/typed-rule-from-components-using-module-as-name.png -------------------------------------------------------------------------------- /examples/typed-rule-from-components/typed-rule-from-components.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-components/typed-rule-from-components.gh -------------------------------------------------------------------------------- /examples/typed-rule-from-components/typed-rule-from-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-components/typed-rule-from-components.png -------------------------------------------------------------------------------- /examples/typed-rule-from-point-tag/typed-rule-from-point-tag-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-point-tag/typed-rule-from-point-tag-screenshot.jpg -------------------------------------------------------------------------------- /examples/typed-rule-from-point-tag/typed-rule-from-point-tag.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-point-tag/typed-rule-from-point-tag.gh -------------------------------------------------------------------------------- /examples/typed-rule-from-point-tag/typed-rule-from-point-tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/examples/typed-rule-from-point-tag/typed-rule-from-point-tag.png -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/manifest.yml -------------------------------------------------------------------------------- /notes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/packages.config -------------------------------------------------------------------------------- /readme-assets/bare-minimum-screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/bare-minimum-screenshot.jpg -------------------------------------------------------------------------------- /readme-assets/bare-minimum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/bare-minimum.png -------------------------------------------------------------------------------- /readme-assets/fpu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/fpu.jpg -------------------------------------------------------------------------------- /readme-assets/grasshopper-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/grasshopper-panel.png -------------------------------------------------------------------------------- /readme-assets/indifferent_rules-component.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/indifferent_rules-component.png -------------------------------------------------------------------------------- /readme-assets/indifferent_rules-literal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/indifferent_rules-literal.png -------------------------------------------------------------------------------- /readme-assets/indifferent_rules-manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/indifferent_rules-manual.png -------------------------------------------------------------------------------- /readme-assets/monoceros32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/monoceros32.png -------------------------------------------------------------------------------- /readme-assets/monoceros512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/monoceros512.png -------------------------------------------------------------------------------- /readme-assets/multiple-modules-explicit-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/multiple-modules-explicit-rules.png -------------------------------------------------------------------------------- /readme-assets/multiple-modules-tree-explicit-rules-a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/multiple-modules-tree-explicit-rules-a.jpg -------------------------------------------------------------------------------- /readme-assets/multiple-modules-tree-explicit-rules-b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/multiple-modules-tree-explicit-rules-b.jpg -------------------------------------------------------------------------------- /readme-assets/multiple-modules-tree-explicit-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/multiple-modules-tree-explicit-rules.png -------------------------------------------------------------------------------- /readme-assets/non-uniform-process.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/non-uniform-process.jpg -------------------------------------------------------------------------------- /readme-assets/non-uniform-result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/non-uniform-result.jpg -------------------------------------------------------------------------------- /readme-assets/non-uniform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subdgtl/Monoceros/HEAD/readme-assets/non-uniform.png --------------------------------------------------------------------------------