From 648524b92b66d1b8ba4677ffd695933abff91905 Mon Sep 17 00:00:00 2001
From: Agnes Gaschitz <57147683+Gaschitz@users.noreply.github.com>
Date: Thu, 12 Dec 2024 14:33:28 +0100
Subject: [PATCH] Updated and added Grasshopper Icons (#210)
---
.../AttributeTypeValueList.cs | 2 +-
.../GetAttributesByTypeComponent.cs | 2 +-
.../ClassificationSystemValueList.cs | 2 +
.../ElementFilterValueList.cs | 2 +-
.../ElementTypeValueList.cs | 2 +-
.../IconSource/AllClassifications.svg | 175 +---------
.../IconSource/AllElems.svg | 55 +---
.../IconSource/AttributesByType.svg | 13 +
.../IconSource/AttributesByTypeValueList.svg | 15 +
.../IconSource/ClassificationById.svg | 216 +------------
.../ClassificationSystemsValueList.svg | 6 +
.../IconSource/ElemFilter.svg | 69 ----
.../IconSource/ElemFilterValueList.svg | 4 +
.../IconSource/ElemType.svg | 5 -
.../IconSource/ElemTypeValueList.svg | 6 +
.../IconSource/FilterElems.svg | 65 +---
.../IconSource/GetPropertyValues.svg | 8 +
.../IconSource/PropertyByGuid.svg | 2 +-
.../IconSource/PropertyByName.svg | 2 +-
.../IconSource/SetClassifications.svg | 215 +------------
.../IconSource/SetPropertyValues.svg | 2 +-
.../IconSource/TapirLogo.svg | 10 -
.../IconSource/WallDetails.svg | 2 +-
.../Properties/Resources.Designer.cs | 299 +++++++++---------
.../Properties/Resources.resx | 282 +++++++++--------
.../Resources/AllClassifications.png | Bin 1113 -> 690 bytes
.../Resources/AllElems.png | Bin 959 -> 567 bytes
.../Resources/AttributesByType.png | Bin 0 -> 644 bytes
.../Resources/AttributesByTypeValueList.png | Bin 0 -> 556 bytes
.../Resources/ClassificationById.png | Bin 1140 -> 816 bytes
.../ClassificationSystemsValueList.png | Bin 0 -> 724 bytes
.../Resources/ElemFilter.png | Bin 559 -> 0 bytes
.../Resources/ElemFilterValueList.png | Bin 0 -> 456 bytes
.../Resources/ElemType.png | Bin 579 -> 0 bytes
.../Resources/ElemTypeValueList.png | Bin 0 -> 629 bytes
.../Resources/FilterElems.png | Bin 952 -> 644 bytes
.../Resources/GetPropertyValues.png | Bin 699 -> 568 bytes
.../Resources/SetClassifications.png | Bin 1113 -> 792 bytes
.../Resources/TapirLogo.png | Bin 747 -> 0 bytes
39 files changed, 387 insertions(+), 1074 deletions(-)
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/AttributesByType.svg
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/AttributesByTypeValueList.svg
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/ClassificationSystemsValueList.svg
delete mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/ElemFilter.svg
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/ElemFilterValueList.svg
delete mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/ElemType.svg
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/ElemTypeValueList.svg
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/GetPropertyValues.svg
delete mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/IconSource/TapirLogo.svg
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/AttributesByType.png
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/AttributesByTypeValueList.png
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/ClassificationSystemsValueList.png
delete mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemFilter.png
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemFilterValueList.png
delete mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemType.png
create mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemTypeValueList.png
delete mode 100644 grasshopper-plugin/TapirGrasshopperPlugin/Resources/TapirLogo.png
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/AttributeTypeValueList.cs b/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/AttributeTypeValueList.cs
index 3da0dbc..c4042da 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/AttributeTypeValueList.cs
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/AttributeTypeValueList.cs
@@ -38,7 +38,7 @@ public override void RefreshItems ()
ExpireSolution (true);
}
- //protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.AttributeType;
+ protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.AttributesByTypeValueList;
public override Guid ComponentGuid => new Guid ("0f6abd5b-6efe-4699-8e0f-ac67eea42890");
}
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/GetAttributesByTypeComponent.cs b/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/GetAttributesByTypeComponent.cs
index ffa7d48..3e7d0d8 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/GetAttributesByTypeComponent.cs
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Components/AttributesComponents/GetAttributesByTypeComponent.cs
@@ -75,7 +75,7 @@ protected override void Solve (IGH_DataAccess DA)
DA.SetDataList (2, attributeNames);
}
- //protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.AttributesByType;
+ protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.AttributesByType;
public override Guid ComponentGuid => new Guid ("f974c9ec-e3ec-4cf2-a576-b7a8548c9883");
}
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Components/ClassificationsComponents/ClassificationSystemValueList.cs b/grasshopper-plugin/TapirGrasshopperPlugin/Components/ClassificationsComponents/ClassificationSystemValueList.cs
index b63ad16..a97ad1d 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Components/ClassificationsComponents/ClassificationSystemValueList.cs
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Components/ClassificationsComponents/ClassificationSystemValueList.cs
@@ -39,6 +39,8 @@ public override void RefreshItems ()
}
}
+ protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.ClassificationSystemsValueList;
+
public override Guid ComponentGuid => new Guid ("a4206a77-3e1e-42e1-b220-dbd7aafdf8f5");
}
}
\ No newline at end of file
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementFilterValueList.cs b/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementFilterValueList.cs
index c7f3d34..8319448 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementFilterValueList.cs
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementFilterValueList.cs
@@ -41,7 +41,7 @@ public override void RefreshItems ()
ExpireSolution (true);
}
- protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.ElemFilter;
+ protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.ElemFilterValueList;
public override Guid ComponentGuid => new Guid ("642df9ee-ddf9-44e8-98bc-c7fe596dad87");
}
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementTypeValueList.cs b/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementTypeValueList.cs
index e79c031..216c776 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementTypeValueList.cs
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Components/ElementsComponents/ElementTypeValueList.cs
@@ -153,7 +153,7 @@ public override void RefreshItems ()
ExpireSolution (true);
}
- protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.ElemType;
+ protected override System.Drawing.Bitmap Icon => TapirGrasshopperPlugin.Properties.Resources.ElemTypeValueList;
public override Guid ComponentGuid => new Guid ("ce80b380-0e42-467c-865b-69b2e8e5155e");
}
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/AllClassifications.svg b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/AllClassifications.svg
index 6658552..7184d87 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/AllClassifications.svg
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/AllClassifications.svg
@@ -1,169 +1,8 @@
-
-
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetClassifications.svg b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetClassifications.svg
index a9c5c71..ab9000b 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetClassifications.svg
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetClassifications.svg
@@ -1,207 +1,8 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetPropertyValues.svg b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetPropertyValues.svg
index 29ed0c1..d27b70c 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetPropertyValues.svg
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/SetPropertyValues.svg
@@ -2,7 +2,7 @@
-
+
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/TapirLogo.svg b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/TapirLogo.svg
deleted file mode 100644
index 69af35e..0000000
--- a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/TapirLogo.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/WallDetails.svg b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/WallDetails.svg
index b76e4b1..42c99f2 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/WallDetails.svg
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/IconSource/WallDetails.svg
@@ -1,5 +1,5 @@
-
+
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.Designer.cs b/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.Designer.cs
index ea70977..5ec19e7 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.Designer.cs
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.Designer.cs
@@ -8,11 +8,10 @@
//
//------------------------------------------------------------------------------
-namespace TapirGrasshopperPlugin.Properties
-{
+namespace TapirGrasshopperPlugin.Properties {
using System;
-
-
+
+
///
/// A strongly-typed resource class, for looking up localized strings, etc.
///
@@ -20,43 +19,39 @@ namespace TapirGrasshopperPlugin.Properties
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute ("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
- [global::System.Diagnostics.DebuggerNonUserCodeAttribute ()]
- [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute ()]
- internal class Resources
- {
-
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources {
+
private static global::System.Resources.ResourceManager resourceMan;
-
+
private static global::System.Globalization.CultureInfo resourceCulture;
-
- [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute ("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
- internal Resources ()
- {
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources() {
}
-
+
///
/// Returns the cached ResourceManager instance used by this class.
///
- [global::System.ComponentModel.EditorBrowsableAttribute (global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Resources.ResourceManager ResourceManager
- {
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager {
get {
- if (object.ReferenceEquals (resourceMan, null)) {
- global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager ("TapirGrasshopperPlugin.Properties.Resources", typeof (Resources).Assembly);
+ if (object.ReferenceEquals(resourceMan, null)) {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TapirGrasshopperPlugin.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
-
+
///
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
///
- [global::System.ComponentModel.EditorBrowsableAttribute (global::System.ComponentModel.EditorBrowsableState.Advanced)]
- internal static global::System.Globalization.CultureInfo Culture
- {
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
@@ -64,290 +59,284 @@ internal Resources ()
resourceCulture = value;
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap AllClassifications
- {
+ internal static System.Drawing.Bitmap AllClassifications {
get {
- object obj = ResourceManager.GetObject ("AllClassifications", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("AllClassifications", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap AllElems
- {
+ internal static System.Drawing.Bitmap AllElems {
get {
- object obj = ResourceManager.GetObject ("AllElems", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("AllElems", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap AllProperties
- {
+ internal static System.Drawing.Bitmap AllProperties {
get {
- object obj = ResourceManager.GetObject ("AllProperties", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("AllProperties", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ArchicadLocation
- {
+ internal static System.Drawing.Bitmap ArchicadLocation {
get {
- object obj = ResourceManager.GetObject ("ArchicadLocation", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ArchicadLocation", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ClassificationById
- {
+ internal static System.Drawing.Bitmap AttributesByType {
get {
- object obj = ResourceManager.GetObject ("ClassificationById", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("AttributesByType", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ConnectArchicad
- {
+ internal static System.Drawing.Bitmap AttributesByTypeValueList {
get {
- object obj = ResourceManager.GetObject ("ConnectArchicad", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("AttributesByTypeValueList", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ElemDetails
- {
+ internal static System.Drawing.Bitmap ClassificationById {
get {
- object obj = ResourceManager.GetObject ("ElemDetails", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ClassificationById", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ElemFilter
- {
+ internal static System.Drawing.Bitmap ClassificationSystemsValueList {
get {
- object obj = ResourceManager.GetObject ("ElemFilter", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ClassificationSystemsValueList", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ElemGDLParameters
- {
+ internal static System.Drawing.Bitmap ConnectArchicad {
get {
- object obj = ResourceManager.GetObject ("ElemGDLParameters", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ConnectArchicad", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap Elems3DBoxes
- {
+ internal static System.Drawing.Bitmap ElemDetails {
get {
- object obj = ResourceManager.GetObject ("Elems3DBoxes", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ElemDetails", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ElemsByType
- {
+ internal static System.Drawing.Bitmap ElemFilterValueList {
get {
- object obj = ResourceManager.GetObject ("ElemsByType", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ElemFilterValueList", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ElemType
- {
+ internal static System.Drawing.Bitmap ElemGDLParameters {
get {
- object obj = ResourceManager.GetObject ("ElemType", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ElemGDLParameters", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap FilterElems
- {
+ internal static System.Drawing.Bitmap Elems3DBoxes {
get {
- object obj = ResourceManager.GetObject ("FilterElems", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("Elems3DBoxes", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap GetPropertyValues
- {
+ internal static System.Drawing.Bitmap ElemsByType {
get {
- object obj = ResourceManager.GetObject ("GetPropertyValues", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ElemsByType", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap HighlightElems
- {
+ internal static System.Drawing.Bitmap ElemTypeValueList {
get {
- object obj = ResourceManager.GetObject ("HighlightElems", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ElemTypeValueList", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap ProjectDetails
- {
+ internal static System.Drawing.Bitmap FilterElems {
get {
- object obj = ResourceManager.GetObject ("ProjectDetails", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("FilterElems", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap PropertyByGuid
- {
+ internal static System.Drawing.Bitmap GetPropertyValues {
get {
- object obj = ResourceManager.GetObject ("PropertyByGuid", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("GetPropertyValues", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap PropertyByName
- {
+ internal static System.Drawing.Bitmap HighlightElems {
get {
- object obj = ResourceManager.GetObject ("PropertyByName", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("HighlightElems", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap SelectedElems
- {
+ internal static System.Drawing.Bitmap ProjectDetails {
get {
- object obj = ResourceManager.GetObject ("SelectedElems", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("ProjectDetails", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap SetClassifications
- {
+ internal static System.Drawing.Bitmap PropertyByGuid {
get {
- object obj = ResourceManager.GetObject ("SetClassifications", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("PropertyByGuid", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap SetPropertyValues
- {
+ internal static System.Drawing.Bitmap PropertyByName {
get {
- object obj = ResourceManager.GetObject ("SetPropertyValues", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("PropertyByName", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap SnapPt
- {
+ internal static System.Drawing.Bitmap SelectedElems {
get {
- object obj = ResourceManager.GetObject ("SnapPt", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("SelectedElems", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap Subelems
- {
+ internal static System.Drawing.Bitmap SetClassifications {
get {
- object obj = ResourceManager.GetObject ("Subelems", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("SetClassifications", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap TapirLogo
- {
+ internal static System.Drawing.Bitmap SetPropertyValues {
get {
- object obj = ResourceManager.GetObject ("TapirLogo", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("SetPropertyValues", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap TapirVersion
- {
+ internal static System.Drawing.Bitmap SnapPt {
get {
- object obj = ResourceManager.GetObject ("TapirVersion", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("SnapPt", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
-
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap Subelems {
+ get {
+ object obj = ResourceManager.GetObject("Subelems", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
+ ///
+ /// Looks up a localized resource of type System.Drawing.Bitmap.
+ ///
+ internal static System.Drawing.Bitmap TapirVersion {
+ get {
+ object obj = ResourceManager.GetObject("TapirVersion", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
+ }
+ }
+
///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
- internal static System.Drawing.Bitmap WallDetails
- {
+ internal static System.Drawing.Bitmap WallDetails {
get {
- object obj = ResourceManager.GetObject ("WallDetails", resourceCulture);
- return ((System.Drawing.Bitmap) (obj));
+ object obj = ResourceManager.GetObject("WallDetails", resourceCulture);
+ return ((System.Drawing.Bitmap)(obj));
}
}
}
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.resx b/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.resx
index c0ee881..83aec99 100644
--- a/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.resx
+++ b/grasshopper-plugin/TapirGrasshopperPlugin/Properties/Resources.resx
@@ -1,6 +1,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- text/microsoft-resx
-
-
- 2.0
-
-
- System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
-
- ..\Resources\ArchicadLocation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ConnectArchicad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ElemDetails.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ElemGDLParameters.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\Elems3DBoxes.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ElemsByType.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ProjectDetails.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\PropertyByGuid.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\PropertyByName.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\SelectedElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\SetPropertyValues.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\TapirLogo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\TapirVersion.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\WallDetails.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ElemType.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\Subelems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\AllProperties.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\SnapPt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\HighlightElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\GetPropertyValues.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ClassificationById.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\AllClassifications.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\SetClassifications.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\FilterElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\AllElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
-
- ..\Resources\ElemFilter.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+ ..\Resources\AllClassifications.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\AllElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\AllProperties.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ArchicadLocation.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\AttributesByType.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\AttributesByTypeValueList.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ClassificationById.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ClassificationSystemsValueList.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ConnectArchicad.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ElemDetails.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ElemFilterValueList.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ElemGDLParameters.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\Elems3DBoxes.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ElemsByType.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ElemTypeValueList.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\FilterElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\GetPropertyValues.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\HighlightElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\ProjectDetails.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\PropertyByGuid.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\PropertyByName.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\SelectedElems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\SetClassifications.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\SetPropertyValues.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\SnapPt.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\Subelems.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\TapirVersion.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\WallDetails.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
\ No newline at end of file
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/AllClassifications.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/AllClassifications.png
index 48f06b5c23c531e66a4bbbe5c584a04ee936e8e5..885128d980708eb57aea3dcf2878e139807b4073 100644
GIT binary patch
delta 659
zcmV;E0&M-+2(kr`D}M_U000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yP<
zVFdsH0!K+iK~#7F<&@7)6G0Tm-|Q0Mf|aSt|j1aj~vP)hqKJvmRMFgAn5-RDjo@WNh_<#W}!xfB+Q>u$lR>(lPcP18h8
zE4%j#3yUb98Gotv_lF{U0#Z1)y!_HF%nGt%ZtpK#!eRL=vS(hLiEy{;$F}4P1-yD~
zve6bz)4s20Y8sQtS=`<>@q`qvwpv?YCqlrmEDKVp2QYj09$1#yNC*alFf(%lGTE#<
zW_dh_?Bw$uk!rPCWMbk93=W=#Eqx0znJlR4C#aMwV1Jqx+)CVp@$t*BwDcTS-oAUL
zZ+>~rA#hAtd%qTQX4lhwu-kDTfyGCU-2^5wIywTKod=xaFP!+35}-KQ+j}S)2poOt
z^9LRt_6K5qpRcCto625+hLb6c^a0eP0Cp4!F$i|N0#SUS0Z@j*14~e2}
zI9*LRyCS|`{Ln=B6aZq{$-b?sY6*Dwf6XYgDzINOimeLl*Nhwj{ASek&jtYwc+6NT
tDF(EIUzyQ^YXu&^GvmfaQGtKSH=5HGfb+?nhYSD!002ovPDHLkV1g$TEC~Pr
delta 1085
zcmV-D1j75W1=$FYD}N5d000id0mpBsWB>pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^
zaAhuUa%Y?FJQ@H11LjFYK~zYIwN_h*lw}xxo^N(tHFv9vGS)-EI)|-w2mgPi`9~!;
zFharzL5i&iQo67UL-Hntq=S-BNre>@5g2q+bP_zkNZQW0&427V>mc-%pl|%LX)I)t&4o;|
zdAL>!Bpjg3*MA`={>1-c5OG#Ef__QB8-+}A=Tw-m6Wa-LYkM
z*f9IG=`i)C{3?iFeazZ49cIb|_b!VCK|V_1a3YZ?Pv@LYr-vaN0qkQ--1w3i6GYtm
z9}K(RN#C#ts8zK7biv0&!w{kYs1$a+?&js*>M0Y1oqzb#f;l9h*BUy-rp2{|OltF}
zJ>+_)rW$A=liFNtT3l-l9Z-2|aU|@-o*K1N62fiq2&62?mka66T~pN=cD;81JlxnY
zyZM*PgR4PotPS{Edb_&%$Kyh-_Y#2}#<#7fPo5~6ku2K)^b|A6-Q&T*wiQj0<=zSa
zfY03k?ti{`dGIF?hXB+L8FLK)NHXli9$yrX&nb1MUI&n~HD+6-MIzRS_)L>_)>!{p
zS?&UW!pY7H0)7)&57}jfOmclGl^P()kmJ2i@}qgzHD8iQ?WeE?7`-ZlI{}>kcVi3z
zvGOGx1%!O}iR@_QAt&}Op(iD-%lCBt3;t_YL
zQh&@OC!E}o4NCwxL*OC+Yk|20+DWa;r&EauTjY4#No)^TE$!<`m1+PW|KssO*okc-
z`El6wS}d_=Vg2k}B9SN?UxPM)Zy{_H^*cmM;0}nN8kw^I(B9r&(?4)MYQYyttS9hH
zUr(x3VNh91C;mWydQ*TiY1$VE?zPY^f`0(91Jd&V8YjY-mbkUp{loVa%~ZE(ux&*X
zQH~ISS|fYzu7)|;L?Tg+xbcIMSm;hZRH>R~k>C&0=yaj0>+IxMGd?)uCE|Gd0U+O<
z?6^^%s!t|KE?v6vwlOqk0YGc(s@q3Zr%oOJbMgV55ThD{h#TJ`=&h6_~h3ve4qM9qCsw;Kut6IR#{%!dim}a`wt|RO800000NkvXXu0mjf
DAP5B+
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/AllElems.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/AllElems.png
index aa0f871633a8eb95559ff5faf4129415f6b515a8..0ba8030a3fbbf3044ed3a703bbfe79177ea1f54c 100644
GIT binary patch
delta 535
zcmV+y0_gp}2e$-}D}M_U000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yP<
zVFdsH0nAB6K~#7F?Nz-_0znX-K}>8wtZA-u`AO75OtdtyRby;SjJ^PYT4R7WfEO_M
z2KWTlKp|0Nmr6|NIiS$OIPM;BxdRS?gU&Cxz1x|)@0*#O+kXXEGEfbnaI{4P0RqtL
zyt)A{FwEsuMrG)$1z0Fb-~vQuixoqDLN~7+bPKT^$w>xAl9b@6^!^0yg7E6Y|
zR^z1Ro12lOm4C}oU>vL;$uc~1&TW1r#zK+zVF3@!0a@d1#+c0(i|xu0wc&T?5|H>P
zmC7~)7j?Cum8k@}-R{J>T-@xmHM~v^*?%P(;L6k2=ju+QQPE*eOvqp*
z?eqDywYBdgxWHI}Ui5hNkiQ52`g%gswga$80Tunp$+6sT7+hXn1l(p}z}zZi^y<0U
zY?}K}Z112oOBR20Q7`&nFlfyDexIu>M!E<+cw8tvg1YPuypm%YX2k!I2~HUdj?AUw
Z7knfWm=Nl|)vo{m002ovPDHLkV1h=D^DO`X
delta 930
zcmV;T16};L1iuH6D}N5d000id0mpBsWB>pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^
zaAhuUa%Y?FJQ@H1158OoK~zYIwNy`N6jvPn-oDx7&1904W?h2fkg$8$Z6@T9fLUW{
zs3;T4zJCcFCApMgWFS~&y&0U_czj;A;PsHzIbaYVP^oL=wiOGG9oZp)EK
z1i@es(P$KRrY7V>qBk1a_a-fJ1D=W>2tvu(vDB#S#eZEMyChR84e!aoGOZR((>ys%
z(_mRvXio-AW*g;l*^_(mq725^`koAI+rB$FHEnuv-`>2n$z5l9mjR{JF$}{~uu?HV
zDYeCVW3BE+CX-!Fr7oK*E34Sr+QPGED;Pd^esg)bP;6>aZ;9OPYueb{c(S@#P1Sk_
z4T>_guzxUrO<)HP9+pG<-lQceoii;f#28z19rwHD=7yUyGc$HP-r4_-L9w_r`=Qaa
zx3~NLRygNf0CNB748*tMCzlYiXjw*9@*=x?dM5xN_gnUg2c0Vvp3eF$YF7ukuD5dT
zj&Sad=(^tOSIDbO&T*{Ng
zAwRxtvh!V2UJBO9&mTQ}Acw
z0Drb`Q9V=AgM$M^hy&Q};^$xPj{_JLc(IUg_mb`C==$7s-JdvhzZRGn(Whee?{D&Z
z7CYknOevrLRp6q7!qU-TcXwO=MgIsss%R)Wjj?*W`H<@2*|6@n0O
z&btBRyy#+KslyAGEX&Bsa--*q-t9paO&hb4^^+^&Z_}GYhwL~NQ~&?~07*qoM6N<$
Ef`%)@hyVZp
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/AttributesByType.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/AttributesByType.png
new file mode 100644
index 0000000000000000000000000000000000000000..13cdb3b61dfde91a8d83237ea9af816b354bf915
GIT binary patch
literal 644
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
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemFilterValueList.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemFilterValueList.png
new file mode 100644
index 0000000000000000000000000000000000000000..3a7a6c26799a27a67b3f0b772e318aad849e9686
GIT binary patch
literal 456
zcmV;(0XP1MP)=lhD$_F^
zrT}Z^zrj)MgiV>6DvzB}@Y=QG;!5|sam{mDGhAPqDbj>gYYvh=q~To5}a
yj$^w^8z5n4lX2(QWLA77Fvd8RQ$9Fs$-@tV`0IX7spTaA0000PYf9h_}oj1hnsn@s(@CWIJ+5rmLDHz(}?SoB+y
z=FGwrip2*ekhi%!%myVKRvi=c
zF2Uj;=t_X&pfNQMAiENfY&=JtuIh7iUpP^;BI)AEhxN8_Mee%61g+6Kl!M29H`
z6Cu(;(~ZGM@0*U&8#K;nw}m^y(5K#y=MbENY>;GmVX2gor0#tWd))8&qLs~
z0LFosf60&NenHe#dKc;;@aoztTLYsb?@e*qJzG{bB9WN$;+k3DyZcFt%U$u2?ma)n
zX!l;7LbSW5lZdKx+!M*GF_Pqy6n2VPUQ}0r=Rr43h$j=NiA0_k|8@oZ7GKoRO!m%Q
RoznmS002ovPDHLkV1l4510VnZ
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemTypeValueList.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/ElemTypeValueList.png
new file mode 100644
index 0000000000000000000000000000000000000000..3092d1728f35b2aea74380671c14d3ded014f75e
GIT binary patch
literal 629
zcmV-*0*d{KP)0BoGqd2xJgwnN3(>$T|hC5Kpq~owuHuw>z^7@YzAc2Q~AHz`%~3iJa>mE{UP8
z>seL(HUoqdk<{_=fRS<-Dr=tSTzCCXjXVp2fXQ%k6EMz4oevm;_2uOi=KGEIoTH;-
zHaEY(28?`N*R8BHKrciCaJAf-3_K{Md0Wg)!AHPYu`o3urKY%@utKr`Ky*r}l*#3C
zZ9ZWDIBPVTQsUS>;Q_p40SJ^Um8z7gayw%iVyr~TR;vY>Os4B6ZjVCkQ%coZZ4~Vm
zUvs`(jb;-n8#UP6+IH?krSzK13$QY5to22R1A`^(16vF&%gTlikF!|&g-##98CMqG
zDJ5wid|ISsM#C6d?eG8b=koGm9}SPZI6wO!sO&Q
z9%i_S3GqgO$bN5k2g_B1|HC6v6_lDqAgT3OuZ&E)?m-#46?C%a?XGE=SQV<;w?zmz
zQr`fMaQ;R?H2cnZ0uThPSQYI)xPPj@^nh@OcS8D~>pGsWq-5C(^ittC7!aMko;%&n
zA(}lu?|t8wUN*me|Gko4A_&toEouy%;>(ip?Ikjd!C3}m6?!4EabFA1VPrmvhT57d
P00000NkvXXu0mjfk-!ll
literal 0
HcmV?d00001
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/FilterElems.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/FilterElems.png
index 251ae0ed38243a14a660d54b7a54c63351e7778c..e227e37276625692e75cc1340ae11470fd0b6b64 100644
GIT binary patch
delta 612
zcmV-q0-OD~2ZRNXD}M_U000XU0RWnu7ytkO0drDELIAGL9O(c600d`2O+f$vv5yP<
zVFdsH0vSm}K~#7F-Bi798bJ`Ag;R7W2IHFMQgI81bX8KMij+v{OdZ9>ZxG5vDel}@
z=>l(nfjUZ_#1xjnRj_o>fu%(pi)0FNCk`mjrm
z2MB(mCvk(p@qT1lmX$ZnjZeVX9+4J3LqOIFL!&ty_NKA@Hg|9~o1qTp=Q9+%dU%nS
zj}8vLVGxX@&&f$2KY#g(MeZC~mYdfGSOztKP%948K?JpJ$B%qd@DL#G)pkE>sa>(o
zu(ngrJFC_v`1zyW=;?Ua=^WO^?ITmTyR}QHn03H7RxdT&dYUS-}OuBvKQ^1%Vn3U==JDo
zF#QHn%w1bZ@}#{=_Uf2krb6ypOj&i>CMdYcKEiz}R)#M7RaJ<6H2*zbs!VjeEK|nP
yRiW?gyZ1>skP23%cPmcOpF8FWQhbW?9;ba!ELWdL_~cP?peYja~^
zaAhuUa%Y?FJQ@H114T(hK~zYI&6QnfQ)d{*|Ic|(6PvGEdROQ!T$|OLHm=3CnpAL>
z&B-o?Y`I^9_Os>m3O-FPAB{C@zoQ7?>bXPFMvj4`84
zn)Jl;_3Waxv@}hQj=`SG_x=C>Kc4q}pL2+r@n4n<0LzyLSJ%|~zLAK03lvP2W@tYq
zuV4MNRDhza=<)hIQ2#noF8|=+!(le{^~q#X2Q#B<
zRcJhwy2Fdr+Z*1QP?QzjZS5V|w)T!}Fc@^d7HEBUUC*2OTrM|HYZwOa`fyL-_4btq
zm>H7o!<3{g;c!TV!y%bTL~4CCAMfA)k=yI_&XWltFn=)cg$s;6A|lyNHZxO|EOtiv
z``khnxP0l#XS$(1Yf+Sv`d1nnKtxVOQEF{X-7SrR$nVQo>CulAJ0DixB5AVOXIWJ`SqG9Mgb#-;cCr_R(sd7{$
zC$sAI(a~Ff%mM%)5C}9e%ku_}$l566s!!_c>whPSuwdjLJxcowUGLSjC1;#Yy+PN-
zU*qF9|DKmo?o-j+-0UTC_!kubVAk%Ajg3t%wqN#{N?XScg3wV;L%>}C+g=I)pb?B=
zws5p$xWFa=Z~Z-l)VE0Xo;iKWc)&eo{<<*
zGklraexV5R|>ZU000#@0YdnV`1Fx7uvXS^
z(vH^_;C>86FlZ8R0003Vrvr;V%@+pzoBCe?to#(jb6*Cq?3ir*aAxW!$%R{iIEo-#
xyB|Z*j;Z1t%&nF<8V$hZNn4J`#6mN($zm)N?bH=5
z-E=l;;=k}wScr9gfo3BJR_h-SZPdb7#Mg>Nwn)+_C}^kI^De$b>QgKcT0I-s=clc2H#7_k0eEp(uJhP6FoJW&_EArQmlanW!4^C6X0T#YB9Bmu;UC#jY1cZ
zLeejp%w%5jee>S?-T(|4NGl)+7v>O$Vn9%^(P%0>&l%Z$vwx|6-QNCCfF7X(ZRrqE
zb(b(MD1vCu*=)9pqob#dwQ3D`9tALdFTrsj+U&ccDEb7!K0P&MPZL67bdgG>LOh=9
zgk{(Z53dzCYck6Op%6XZ0z{s_e)YzRLu?K?qM6*516ueI9G|68uV
zFfn0sy4_bPNp*N4g5U^vyf=ChanZ+2PC9(;96D`s`!pdcv!&nby;)#(ZQYBGCA!T;
zqmfoWlF1Yp3L&@YY>k)-5c$hAZUO5QFaNvXk;|0yyw@_z6Of;Rk6s1eQz00000
LNkvXXu0mjfnxiIS
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/SetClassifications.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/SetClassifications.png
index 8005fc362c313017c7684484171912699c7dbe27..cbe730058cdb679926428ea3a3deb8781136fdde 100644
GIT binary patch
delta 761
zcmVZ(Q^JtwFnbu~A_XQhaEi*uv)D(f@ZS_F6SULHLW+~
z#l8*8JBIfkFn`Sw(th^pmCMl9b`%sv0gJ^_5zc0_pyl(&i^X+MOUt3pD=Xg>U0PUd
zdoe5+>uR{&9-aqH(<=EuVEF#zq*tE;*&Yc7XDS4!D3eh+Y5%D+oGcJ{U3bP5MD!}C
zvHafs2Q)Yn;%huZ52~vPXH0s#Z2z$xw-J8?0do0#zJFQM@-R6y1q%y{(8Cg4hA4`l
zs$byt9WP6^8Ra?HR98{hKTNoQFL(
z`1hfqYh2-6IE>=+HIZQbBZ_AKySKB=Zuj+GDj2=IidtJOA7in_o1LAVFfeeATW>O%
z;PI2Ez<)erWD#((5*;1A#VjPCq*5?8_7I9|rM_(TTdquQJ$&R5awHN7C>D#btfZpC
zhHJ;1>`Cy;q+P;&MpcmOzN_ljG;@1IQ9gaBCJzK&@&0jLxWven_*%i(
zSCDp6!%emhIz6ym_$8;DG5ZqcN8;00000NkvXXu0mjfKUZ3@
delta 1085
zcmV-D1j7562H6OZD}N5d000id0mpBsWB>pF8FWQhbW?9;ba!ELWdL_~cP?peYja~^
zaAhuUa%Y?FJQ@H11LjFYK~zYIwNzh7TW1vioi8{3Z%h=oGT4L2#pM2}QKN!w*)nGl
zw+H*!F?{J@50(udI+z`-Lu8D>9z4Nhad&ZQK4~-^cra3JIvH
z>QR)kaS%EfbQJ&yvKK_L+~f4?@pwF0tbizVsVHUR03N3|*Ue~TX)qdD8a(=Joz9F0
zE_d13f9gQj^?we@Vj{h{ZYC0mbbhS9zP_xyyvlL}pNU!4?L&94`Y}*Yo_!g+tFvq7R6u&F?pQrHk*yENdFTbT}MVet%ni`04gc`u7tcP1FA2d81)8
z0l*#GUh)TwWhN-ZSQ8}Qux)$MFbpl1gD;cWSa{k@gp}e0z*qKE&U9KZon~eR@dChB
z^k*w%+xDX0Zys|bT^EA9i9{kTL05z$P99(pF|f5sjfTRBluSU5MToBu41qyG%QFAxD~gZOg`!pLO3@8dNmvlD*zxNeSlnJP*)&u
z?1h~~zuydj@G*p(li>RR5DteG23~Olz5@U=*!;P4ocF%GH0kR;)zw~JdE{MUW(0I|
zmKhH+o9pND=5RtdG{Y{wNkA43y+}l7Bax-cJAdRWtG|yESJ)g_U
za?{kfw6xT@apRkhh?$|Ps>kIn8xue$fUC^Ng3ti)Ndk^A10bXT`WB3303{&w64=gW
zGyPQ_?_iD3cmC2Bla(bUCFt(%;atwy+}QZ@r~rU?Jf4h3e(HAwp8@zTfE6%L=dzgw
z7Js+~7p~>9nFcUV16U#AgcST*Bx3bddA#Rpe7<+4CMPOuYilt&I+n>f&YfH?T_24`
zQ()!;k6$w``ZeQXp;)jbH1twe_r~h#DoZJOcz7h;8fuT~x?Z#Mrr_UncbfnJFK>UZ
z1Arss*D=fbvAMNvsK)2JFf}<*QCC-ok$;g7GnZ#(eo1d`bXu16C~r**V{4lL5Zwa+
zF#C35#gcF59c
diff --git a/grasshopper-plugin/TapirGrasshopperPlugin/Resources/TapirLogo.png b/grasshopper-plugin/TapirGrasshopperPlugin/Resources/TapirLogo.png
deleted file mode 100644
index c055b7d52826e62c54c75df031bb80cfce0ef084..0000000000000000000000000000000000000000
GIT binary patch
literal 0
HcmV?d00001
literal 747
zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0)R?(?u
zN+nSg1wlxs-@jX3ef;QQfImmmLxkDvbUIlVJL>Up90#`1XlyEIp`DpEV1S}&nq?T4
zWx=2*3fj~@km`K^2^CF9QTaGEb$fDh0uC`j5bDhU)U@022f?~M@VuKyz;y*}IJNRm
z;Ny9CP&od6pZDd9WrxF|*8gZ=-*TI`ZrNr002ovPDHLkV1ff8RZ;)|