diff --git a/.gitignore b/.gitignore index 6294c2b1a0..f7549dd367 100644 --- a/.gitignore +++ b/.gitignore @@ -74,3 +74,6 @@ files_to_translate.txt # mdBook build output docs/book/ + +# To regenerate themed icons: python3 icons/retheme.py +# icons/themed/ is tracked (committed) so CI builds include them diff --git a/docs/COMPONENTS.md b/docs/COMPONENTS.md index 6b1d501d68..0b9a4e778c 100644 --- a/docs/COMPONENTS.md +++ b/docs/COMPONENTS.md @@ -116,4 +116,4 @@ Notable theme customizations beyond standard Catppuccin colors: ### Palette -All silo-* icons use the Catppuccin Mocha color scheme. See `kindred-icons/README.md` for palette specification and icon design standards. +All silo-* icons use the Catppuccin Mocha color scheme. See `icons/kindred/README.md` for palette specification and icon design standards. diff --git a/docs/DAG_CLIENT_INTEGRATION.md b/docs/DAG_CLIENT_INTEGRATION.md new file mode 100644 index 0000000000..00ac882f03 --- /dev/null +++ b/docs/DAG_CLIENT_INTEGRATION.md @@ -0,0 +1,395 @@ +# DAG Client Integration Contract + +**Status:** Draft +**Last Updated:** 2026-02-13 + +This document describes what silo-mod and Headless Create runners need to implement to integrate with the Silo dependency DAG and worker system. + +--- + +## 1. Overview + +The DAG system has two client-side integration points: + +1. **silo-mod workbench** (desktop) -- pushes DAG data to Silo on save or revision create. +2. **silorunner + silo-mod** (headless) -- extracts DAGs, validates features, and exports geometry as compute jobs. + +Both share the same Python codebase in the silo-mod repository. Desktop users call the code interactively; runners call it headlessly via `create --console`. + +--- + +## 2. DAG Sync Payload + +Clients push feature trees to Silo via: + +``` +PUT /api/items/{partNumber}/dag +Authorization: Bearer +Content-Type: application/json +``` + +### 2.1 Request Body + +```json +{ + "revision_number": 3, + "nodes": [ + { + "node_key": "Sketch001", + "node_type": "sketch", + "properties_hash": "a1b2c3d4e5f6...", + "metadata": { + "label": "Base Profile", + "constraint_count": 12 + } + }, + { + "node_key": "Pad001", + "node_type": "pad", + "properties_hash": "f6e5d4c3b2a1...", + "metadata": { + "label": "Main Extrusion", + "length": 25.0 + } + } + ], + "edges": [ + { + "source_key": "Sketch001", + "target_key": "Pad001", + "edge_type": "depends_on" + } + ] +} +``` + +### 2.2 Field Reference + +**Nodes:** + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `node_key` | string | yes | Unique within item+revision. Use Create's internal object name (e.g. `Sketch001`, `Pad003`). | +| `node_type` | string | yes | One of: `sketch`, `pad`, `pocket`, `fillet`, `chamfer`, `constraint`, `body`, `part`, `datum`. | +| `properties_hash` | string | no | SHA-256 hex digest of the node's parametric inputs. Used for memoization. | +| `validation_state` | string | no | One of: `clean`, `dirty`, `validating`, `failed`. Defaults to `clean`. | +| `metadata` | object | no | Arbitrary key-value pairs for display or debugging. | + +**Edges:** + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `source_key` | string | yes | The node that is depended upon. | +| `target_key` | string | yes | The node that depends on the source. | +| `edge_type` | string | no | One of: `depends_on` (default), `references`, `constrains`. | + +**Direction convention:** Edges point from dependency to dependent. If Pad001 depends on Sketch001, the edge is `source_key: "Sketch001"`, `target_key: "Pad001"`. + +### 2.3 Response + +```json +{ + "synced": true, + "node_count": 15, + "edge_count": 14 +} +``` + +--- + +## 3. Computing properties_hash + +The `properties_hash` enables memoization -- if a node's inputs haven't changed since the last validation, it can be skipped. Computing it: + +```python +import hashlib +import json + +def compute_properties_hash(feature_obj): + """Hash the parametric inputs of a Create feature.""" + inputs = {} + + if feature_obj.TypeId == "Sketcher::SketchObject": + # Hash geometry + constraints + inputs["geometry_count"] = feature_obj.GeometryCount + inputs["constraint_count"] = feature_obj.ConstraintCount + inputs["geometry"] = str(feature_obj.Shape.exportBrep()) + elif feature_obj.TypeId == "PartDesign::Pad": + inputs["length"] = feature_obj.Length.Value + inputs["type"] = str(feature_obj.Type) + inputs["reversed"] = feature_obj.Reversed + inputs["sketch"] = feature_obj.Profile[0].Name + # ... other feature types + + canonical = json.dumps(inputs, sort_keys=True) + return hashlib.sha256(canonical.encode()).hexdigest() +``` + +The exact inputs per feature type are determined by what parametric values affect the feature's geometry. Include anything that, if changed, would require recomputation. + +--- + +## 4. Feature Tree Walking + +To extract the DAG from a Create document: + +```python +import FreeCAD + +def extract_dag(doc): + """Walk a Create document and return nodes + edges.""" + nodes = [] + edges = [] + + for obj in doc.Objects: + # Skip non-feature objects + if not hasattr(obj, "TypeId"): + continue + + node_type = classify_type(obj.TypeId) + if node_type is None: + continue + + nodes.append({ + "node_key": obj.Name, + "node_type": node_type, + "properties_hash": compute_properties_hash(obj), + "metadata": { + "label": obj.Label, + "type_id": obj.TypeId, + } + }) + + # Walk dependencies via InList (objects this one depends on) + for dep in obj.InList: + if hasattr(dep, "TypeId") and classify_type(dep.TypeId): + edges.append({ + "source_key": dep.Name, + "target_key": obj.Name, + "edge_type": "depends_on", + }) + + return nodes, edges + + +def classify_type(type_id): + """Map Create TypeIds to DAG node types.""" + mapping = { + "Sketcher::SketchObject": "sketch", + "PartDesign::Pad": "pad", + "PartDesign::Pocket": "pocket", + "PartDesign::Fillet": "fillet", + "PartDesign::Chamfer": "chamfer", + "PartDesign::Body": "body", + "Part::Feature": "part", + "Sketcher::SketchConstraint": "constraint", + } + return mapping.get(type_id) +``` + +--- + +## 5. When to Push DAG Data + +Push the DAG to Silo in these scenarios: + +| Event | Trigger | Who | +|-------|---------|-----| +| User saves in silo-mod | On save callback | Desktop silo-mod workbench | +| User creates a revision | After `POST /api/items/{pn}/revisions` succeeds | Desktop silo-mod workbench | +| Runner extracts DAG | After `create-dag-extract` job completes | silorunner via `PUT /api/runner/jobs/{id}/dag` | +| Runner validates | After `create-validate` job, push updated validation states | silorunner via `PUT /api/runner/jobs/{id}/dag` | + +--- + +## 6. Runner Entry Points + +silo-mod must provide these Python entry points for headless invocation: + +### 6.1 silo.runner.dag_extract + +Extracts the feature DAG from a Create file and writes it as JSON. + +```python +# silo/runner.py + +def dag_extract(input_path, output_path): + """ + Extract feature DAG from a Create file. + + Args: + input_path: Path to the .kc (Kindred Create) file. + output_path: Path to write the JSON output. + + Output JSON format: + { + "nodes": [...], // Same format as DAG sync payload + "edges": [...] + } + """ + doc = FreeCAD.openDocument(input_path) + nodes, edges = extract_dag(doc) + + with open(output_path, 'w') as f: + json.dump({"nodes": nodes, "edges": edges}, f) + + FreeCAD.closeDocument(doc.Name) +``` + +### 6.2 silo.runner.validate + +Rebuilds all features and reports pass/fail per node. + +```python +def validate(input_path, output_path): + """ + Validate a Create file by rebuilding all features. + + Output JSON format: + { + "valid": true/false, + "nodes": [ + { + "node_key": "Pad001", + "state": "clean", // or "failed" + "message": null, // error message if failed + "properties_hash": "..." + } + ] + } + """ + doc = FreeCAD.openDocument(input_path) + doc.recompute() + + results = [] + all_valid = True + for obj in doc.Objects: + if not hasattr(obj, "TypeId"): + continue + node_type = classify_type(obj.TypeId) + if node_type is None: + continue + + state = "clean" + message = None + if hasattr(obj, "isValid") and not obj.isValid(): + state = "failed" + message = f"Feature {obj.Label} failed to recompute" + all_valid = False + + results.append({ + "node_key": obj.Name, + "state": state, + "message": message, + "properties_hash": compute_properties_hash(obj), + }) + + with open(output_path, 'w') as f: + json.dump({"valid": all_valid, "nodes": results}, f) + + FreeCAD.closeDocument(doc.Name) +``` + +### 6.3 silo.runner.export + +Exports geometry to STEP, IGES, or other formats. + +```python +def export(input_path, output_path, format="step"): + """ + Export a Create file to an external format. + + Args: + input_path: Path to the .kc file. + output_path: Path to write the exported file. + format: Export format ("step", "iges", "stl", "obj"). + """ + doc = FreeCAD.openDocument(input_path) + + import Part + shapes = [obj.Shape for obj in doc.Objects if hasattr(obj, "Shape")] + compound = Part.makeCompound(shapes) + + format_map = { + "step": "STEP", + "iges": "IGES", + "stl": "STL", + "obj": "OBJ", + } + + Part.export([compound], output_path) + FreeCAD.closeDocument(doc.Name) +``` + +--- + +## 7. Headless Invocation + +The `silorunner` binary shells out to Create (with silo-mod installed): + +```bash +# DAG extraction +create --console -e "from silo.runner import dag_extract; dag_extract('/tmp/job/part.kc', '/tmp/job/dag.json')" + +# Validation +create --console -e "from silo.runner import validate; validate('/tmp/job/part.kc', '/tmp/job/result.json')" + +# Export +create --console -e "from silo.runner import export; export('/tmp/job/part.kc', '/tmp/job/output.step', 'step')" +``` + +**Prerequisites:** The runner host must have: +- Headless Create installed (Kindred's fork of FreeCAD) +- silo-mod installed as a Create addon (so `from silo.runner import ...` works) +- No display server required -- `--console` mode is headless + +--- + +## 8. Validation Result Handling + +After a runner completes a `create-validate` job, it should: + +1. Read the result JSON. +2. Push updated validation states via `PUT /api/runner/jobs/{jobID}/dag`: + +```json +{ + "revision_number": 3, + "nodes": [ + {"node_key": "Sketch001", "node_type": "sketch", "validation_state": "clean", "properties_hash": "abc..."}, + {"node_key": "Pad001", "node_type": "pad", "validation_state": "failed", "properties_hash": "def..."} + ], + "edges": [ + {"source_key": "Sketch001", "target_key": "Pad001"} + ] +} +``` + +3. Complete the job via `POST /api/runner/jobs/{jobID}/complete` with the summary result. + +--- + +## 9. SSE Events + +Clients should listen for these events on `GET /api/events`: + +| Event | Payload | When | +|-------|---------|------| +| `dag.updated` | `{item_id, part_number, revision_number, node_count, edge_count}` | After any DAG sync | +| `dag.validated` | `{item_id, part_number, valid, failed_count}` | After validation completes | +| `job.created` | `{job_id, definition_name, trigger, item_id}` | Job auto-triggered or manually created | +| `job.claimed` | `{job_id, runner_id, runner}` | Runner claims a job | +| `job.progress` | `{job_id, progress, message}` | Runner reports progress | +| `job.completed` | `{job_id, runner_id}` | Job finishes successfully | +| `job.failed` | `{job_id, runner_id, error}` | Job fails | +| `job.cancelled` | `{job_id, cancelled_by}` | Job cancelled by user | + +--- + +## 10. Cross-Item Edges + +For assembly constraints that reference geometry in child parts (e.g. a mate constraint between two parts), use the `dag_cross_edges` table. These edges bridge the BOM DAG and the feature DAG. + +Cross-item edges are **not** included in the standard `PUT /dag` sync. They will be managed through a dedicated endpoint in a future iteration once the assembly constraint model in Create/silo-mod is finalized. + +For now, the DAG sync covers intra-item dependencies only. Assembly-level interference detection uses the BOM DAG (`relationships` table) combined with per-item feature DAGs. diff --git a/docs/KC_SPECIFICATION.md b/docs/KC_SPECIFICATION.md index a38235ca60..a636b94cd8 100644 --- a/docs/KC_SPECIFICATION.md +++ b/docs/KC_SPECIFICATION.md @@ -468,7 +468,7 @@ The `kc_version` field in `silo/manifest.json` tracks the schema version. When t | MIME type | `application/x-kindred-create` | | UTI (macOS) | `com.kindred-systems.create.document` | | Magic bytes | `PK` (ZIP header, offset 0) + `silo/manifest.json` entry present | -| Icon | Kindred Create document icon (from `kindred-icons/` asset set) | +| Icon | Kindred Create document icon (from `icons/kindred/` asset set) | --- diff --git a/docs/MULTI_USER_CLIENT.md b/docs/MULTI_USER_CLIENT.md new file mode 100644 index 0000000000..00ac882f03 --- /dev/null +++ b/docs/MULTI_USER_CLIENT.md @@ -0,0 +1,395 @@ +# DAG Client Integration Contract + +**Status:** Draft +**Last Updated:** 2026-02-13 + +This document describes what silo-mod and Headless Create runners need to implement to integrate with the Silo dependency DAG and worker system. + +--- + +## 1. Overview + +The DAG system has two client-side integration points: + +1. **silo-mod workbench** (desktop) -- pushes DAG data to Silo on save or revision create. +2. **silorunner + silo-mod** (headless) -- extracts DAGs, validates features, and exports geometry as compute jobs. + +Both share the same Python codebase in the silo-mod repository. Desktop users call the code interactively; runners call it headlessly via `create --console`. + +--- + +## 2. DAG Sync Payload + +Clients push feature trees to Silo via: + +``` +PUT /api/items/{partNumber}/dag +Authorization: Bearer +Content-Type: application/json +``` + +### 2.1 Request Body + +```json +{ + "revision_number": 3, + "nodes": [ + { + "node_key": "Sketch001", + "node_type": "sketch", + "properties_hash": "a1b2c3d4e5f6...", + "metadata": { + "label": "Base Profile", + "constraint_count": 12 + } + }, + { + "node_key": "Pad001", + "node_type": "pad", + "properties_hash": "f6e5d4c3b2a1...", + "metadata": { + "label": "Main Extrusion", + "length": 25.0 + } + } + ], + "edges": [ + { + "source_key": "Sketch001", + "target_key": "Pad001", + "edge_type": "depends_on" + } + ] +} +``` + +### 2.2 Field Reference + +**Nodes:** + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `node_key` | string | yes | Unique within item+revision. Use Create's internal object name (e.g. `Sketch001`, `Pad003`). | +| `node_type` | string | yes | One of: `sketch`, `pad`, `pocket`, `fillet`, `chamfer`, `constraint`, `body`, `part`, `datum`. | +| `properties_hash` | string | no | SHA-256 hex digest of the node's parametric inputs. Used for memoization. | +| `validation_state` | string | no | One of: `clean`, `dirty`, `validating`, `failed`. Defaults to `clean`. | +| `metadata` | object | no | Arbitrary key-value pairs for display or debugging. | + +**Edges:** + +| Field | Type | Required | Description | +|-------|------|----------|-------------| +| `source_key` | string | yes | The node that is depended upon. | +| `target_key` | string | yes | The node that depends on the source. | +| `edge_type` | string | no | One of: `depends_on` (default), `references`, `constrains`. | + +**Direction convention:** Edges point from dependency to dependent. If Pad001 depends on Sketch001, the edge is `source_key: "Sketch001"`, `target_key: "Pad001"`. + +### 2.3 Response + +```json +{ + "synced": true, + "node_count": 15, + "edge_count": 14 +} +``` + +--- + +## 3. Computing properties_hash + +The `properties_hash` enables memoization -- if a node's inputs haven't changed since the last validation, it can be skipped. Computing it: + +```python +import hashlib +import json + +def compute_properties_hash(feature_obj): + """Hash the parametric inputs of a Create feature.""" + inputs = {} + + if feature_obj.TypeId == "Sketcher::SketchObject": + # Hash geometry + constraints + inputs["geometry_count"] = feature_obj.GeometryCount + inputs["constraint_count"] = feature_obj.ConstraintCount + inputs["geometry"] = str(feature_obj.Shape.exportBrep()) + elif feature_obj.TypeId == "PartDesign::Pad": + inputs["length"] = feature_obj.Length.Value + inputs["type"] = str(feature_obj.Type) + inputs["reversed"] = feature_obj.Reversed + inputs["sketch"] = feature_obj.Profile[0].Name + # ... other feature types + + canonical = json.dumps(inputs, sort_keys=True) + return hashlib.sha256(canonical.encode()).hexdigest() +``` + +The exact inputs per feature type are determined by what parametric values affect the feature's geometry. Include anything that, if changed, would require recomputation. + +--- + +## 4. Feature Tree Walking + +To extract the DAG from a Create document: + +```python +import FreeCAD + +def extract_dag(doc): + """Walk a Create document and return nodes + edges.""" + nodes = [] + edges = [] + + for obj in doc.Objects: + # Skip non-feature objects + if not hasattr(obj, "TypeId"): + continue + + node_type = classify_type(obj.TypeId) + if node_type is None: + continue + + nodes.append({ + "node_key": obj.Name, + "node_type": node_type, + "properties_hash": compute_properties_hash(obj), + "metadata": { + "label": obj.Label, + "type_id": obj.TypeId, + } + }) + + # Walk dependencies via InList (objects this one depends on) + for dep in obj.InList: + if hasattr(dep, "TypeId") and classify_type(dep.TypeId): + edges.append({ + "source_key": dep.Name, + "target_key": obj.Name, + "edge_type": "depends_on", + }) + + return nodes, edges + + +def classify_type(type_id): + """Map Create TypeIds to DAG node types.""" + mapping = { + "Sketcher::SketchObject": "sketch", + "PartDesign::Pad": "pad", + "PartDesign::Pocket": "pocket", + "PartDesign::Fillet": "fillet", + "PartDesign::Chamfer": "chamfer", + "PartDesign::Body": "body", + "Part::Feature": "part", + "Sketcher::SketchConstraint": "constraint", + } + return mapping.get(type_id) +``` + +--- + +## 5. When to Push DAG Data + +Push the DAG to Silo in these scenarios: + +| Event | Trigger | Who | +|-------|---------|-----| +| User saves in silo-mod | On save callback | Desktop silo-mod workbench | +| User creates a revision | After `POST /api/items/{pn}/revisions` succeeds | Desktop silo-mod workbench | +| Runner extracts DAG | After `create-dag-extract` job completes | silorunner via `PUT /api/runner/jobs/{id}/dag` | +| Runner validates | After `create-validate` job, push updated validation states | silorunner via `PUT /api/runner/jobs/{id}/dag` | + +--- + +## 6. Runner Entry Points + +silo-mod must provide these Python entry points for headless invocation: + +### 6.1 silo.runner.dag_extract + +Extracts the feature DAG from a Create file and writes it as JSON. + +```python +# silo/runner.py + +def dag_extract(input_path, output_path): + """ + Extract feature DAG from a Create file. + + Args: + input_path: Path to the .kc (Kindred Create) file. + output_path: Path to write the JSON output. + + Output JSON format: + { + "nodes": [...], // Same format as DAG sync payload + "edges": [...] + } + """ + doc = FreeCAD.openDocument(input_path) + nodes, edges = extract_dag(doc) + + with open(output_path, 'w') as f: + json.dump({"nodes": nodes, "edges": edges}, f) + + FreeCAD.closeDocument(doc.Name) +``` + +### 6.2 silo.runner.validate + +Rebuilds all features and reports pass/fail per node. + +```python +def validate(input_path, output_path): + """ + Validate a Create file by rebuilding all features. + + Output JSON format: + { + "valid": true/false, + "nodes": [ + { + "node_key": "Pad001", + "state": "clean", // or "failed" + "message": null, // error message if failed + "properties_hash": "..." + } + ] + } + """ + doc = FreeCAD.openDocument(input_path) + doc.recompute() + + results = [] + all_valid = True + for obj in doc.Objects: + if not hasattr(obj, "TypeId"): + continue + node_type = classify_type(obj.TypeId) + if node_type is None: + continue + + state = "clean" + message = None + if hasattr(obj, "isValid") and not obj.isValid(): + state = "failed" + message = f"Feature {obj.Label} failed to recompute" + all_valid = False + + results.append({ + "node_key": obj.Name, + "state": state, + "message": message, + "properties_hash": compute_properties_hash(obj), + }) + + with open(output_path, 'w') as f: + json.dump({"valid": all_valid, "nodes": results}, f) + + FreeCAD.closeDocument(doc.Name) +``` + +### 6.3 silo.runner.export + +Exports geometry to STEP, IGES, or other formats. + +```python +def export(input_path, output_path, format="step"): + """ + Export a Create file to an external format. + + Args: + input_path: Path to the .kc file. + output_path: Path to write the exported file. + format: Export format ("step", "iges", "stl", "obj"). + """ + doc = FreeCAD.openDocument(input_path) + + import Part + shapes = [obj.Shape for obj in doc.Objects if hasattr(obj, "Shape")] + compound = Part.makeCompound(shapes) + + format_map = { + "step": "STEP", + "iges": "IGES", + "stl": "STL", + "obj": "OBJ", + } + + Part.export([compound], output_path) + FreeCAD.closeDocument(doc.Name) +``` + +--- + +## 7. Headless Invocation + +The `silorunner` binary shells out to Create (with silo-mod installed): + +```bash +# DAG extraction +create --console -e "from silo.runner import dag_extract; dag_extract('/tmp/job/part.kc', '/tmp/job/dag.json')" + +# Validation +create --console -e "from silo.runner import validate; validate('/tmp/job/part.kc', '/tmp/job/result.json')" + +# Export +create --console -e "from silo.runner import export; export('/tmp/job/part.kc', '/tmp/job/output.step', 'step')" +``` + +**Prerequisites:** The runner host must have: +- Headless Create installed (Kindred's fork of FreeCAD) +- silo-mod installed as a Create addon (so `from silo.runner import ...` works) +- No display server required -- `--console` mode is headless + +--- + +## 8. Validation Result Handling + +After a runner completes a `create-validate` job, it should: + +1. Read the result JSON. +2. Push updated validation states via `PUT /api/runner/jobs/{jobID}/dag`: + +```json +{ + "revision_number": 3, + "nodes": [ + {"node_key": "Sketch001", "node_type": "sketch", "validation_state": "clean", "properties_hash": "abc..."}, + {"node_key": "Pad001", "node_type": "pad", "validation_state": "failed", "properties_hash": "def..."} + ], + "edges": [ + {"source_key": "Sketch001", "target_key": "Pad001"} + ] +} +``` + +3. Complete the job via `POST /api/runner/jobs/{jobID}/complete` with the summary result. + +--- + +## 9. SSE Events + +Clients should listen for these events on `GET /api/events`: + +| Event | Payload | When | +|-------|---------|------| +| `dag.updated` | `{item_id, part_number, revision_number, node_count, edge_count}` | After any DAG sync | +| `dag.validated` | `{item_id, part_number, valid, failed_count}` | After validation completes | +| `job.created` | `{job_id, definition_name, trigger, item_id}` | Job auto-triggered or manually created | +| `job.claimed` | `{job_id, runner_id, runner}` | Runner claims a job | +| `job.progress` | `{job_id, progress, message}` | Runner reports progress | +| `job.completed` | `{job_id, runner_id}` | Job finishes successfully | +| `job.failed` | `{job_id, runner_id, error}` | Job fails | +| `job.cancelled` | `{job_id, cancelled_by}` | Job cancelled by user | + +--- + +## 10. Cross-Item Edges + +For assembly constraints that reference geometry in child parts (e.g. a mate constraint between two parts), use the `dag_cross_edges` table. These edges bridge the BOM DAG and the feature DAG. + +Cross-item edges are **not** included in the standard `PUT /dag` sync. They will be managed through a dedicated endpoint in a future iteration once the assembly constraint model in Create/silo-mod is finalized. + +For now, the DAG sync covers intra-item dependencies only. Assembly-level interference detection uses the BOM DAG (`relationships` table) combined with per-item feature DAGs. diff --git a/docs/UPSTREAM.md b/docs/UPSTREAM.md index 725623cf68..b97ad9a0f0 100644 --- a/docs/UPSTREAM.md +++ b/docs/UPSTREAM.md @@ -36,7 +36,7 @@ These files/directories exist only in Kindred Create and can be copied directly | Directory | Description | |-----------|-------------| -| `kindred-icons/` | 1444 Catppuccin Mocha SVG icon overrides | +| `icons/kindred/` | 1444 Catppuccin Mocha SVG icon overrides | | `mods/silo/` | Silo workbench submodule (`silo-mod`) | | `mods/ztools/` | ZTools workbench submodule | | `src/Mod/Create/` | Kindred Create workbench (InitGui.py, kc_format.py, update_checker.py, version.py.in) | @@ -179,7 +179,7 @@ Files touched: `src/Mod/Assembly/App/AssemblyObject.cpp`, `src/Mod/Assembly/Util 1. **Build**: Full CMake configure + build succeeds 2. **Launch**: Application starts without errors, splash and about dialogs show Kindred branding 3. **Theme**: KindredCreate theme loads correctly, QSS applies -4. **Icons**: kindred-icons override system works (BitmapFactory loads from kindred-icons/) +4. **Icons**: icon override system works (BitmapFactory loads from icons/kindred/) 5. **Origin system**: FileOrigin, OriginManager, OriginSelectorWidget functional 6. **Silo integration**: Auth panel, activity panel, save/commit/pull all work 7. **File format**: `.kc` files open/save with silo/ directory preserved @@ -199,7 +199,7 @@ git fetch upstream git checkout -b kindred-on-upstream-1.2 upstream/main # 3. Copy Kindred-only directories -git checkout origin/main -- kindred-icons/ mods/ src/Mod/Create/ package/ docs/ \ +git checkout origin/main -- icons/ mods/ src/Mod/Create/ package/ docs/ \ .gitea/ resources/kindred* banner-logo-light.png CONTRIBUTING.md .gitmodules # 4. Copy new Kindred source files (no conflicts) diff --git a/docs/src/development/repo-structure.md b/docs/src/development/repo-structure.md index 00cb092798..31cd86e999 100644 --- a/docs/src/development/repo-structure.md +++ b/docs/src/development/repo-structure.md @@ -20,7 +20,10 @@ create/ ├── mods/ # Kindred addon workbenches (submodules) │ ├── ztools/ # ztools workbench │ └── silo/ # Silo parts database -├── kindred-icons/ # SVG icon library (~200 icons) +├── icons/ # Icon theming (kindred overrides, palettes, retheme script) +│ ├── kindred/ # Hand-crafted Catppuccin Mocha SVG overrides (~1444 icons) +│ ├── mappings/ # Color palette CSVs (FCAD.csv, kindred.csv) +│ └── retheme.py # Script to remap upstream icon colors ├── resources/ # Branding, desktop integration │ ├── branding/ # Logo, splash, icon generation scripts │ └── icons/ # Platform icons (.ico, .icns, hicolor) diff --git a/icons/mappings/FCAD.csv b/icons/mappings/FCAD.csv new file mode 100644 index 0000000000..81c7992c2e --- /dev/null +++ b/icons/mappings/FCAD.csv @@ -0,0 +1,43 @@ +#fce94f,#edd400,#c4a000,#302b00 +#8ae234,#73d216,#4e9a06,#172a04 +#fcaf3e,#f57900,#ce5c00,#321900 +#729fcf,#3465a4,#204a87,#0b1521 +#ad7fa8,#75507b,#5c3566,#171018 +#e9b96e,#c17d11,#8f5902,#271903 +#ef2929,#cc0000,#a40000,#280000 +#34e0e2,#16d0d2,#06989a,#042a2a +#ffffff,#eeeeec,#d3d7cf,#babdb6 +#888a85,#555753,#2e3436,#000000 +#faff2b,#fff520,#fff110,#fff300 +#ffe83f,#ffe100,#ffed00,#ffff00 +#fcc217,#fdb616,#ffaa00,#ffa200 +#c89600,#aa6c00,#af7d00,#a7873d +#cabd55,#e3d032,#c9830a,#231f0b +#2b2200 +#ff5f00,#ff6200,#cf7008 +#ff0000,#ff2600,#ef3535,#ff4c4c +#c91a1a,#d40000,#c51900,#a70202 +#3d0000,#230b0b,#2e0000 +#6dff00,#00ff00,#52ff00,#00fd00 +#31d900,#00b800,#4bff54 +#2e8207,#0f7d0f,#17230b,#162c02 +#71b2f8,#89d5f8,#639ef0,#83a8d8 +#c8e0f9,#c1e3f7,#c4d7eb,#b9cfe7 +#379cfb,#89aedc,#528ac5,#5b86be +#637dca,#3977c3,#1e64ff +#0000ff,#0069ff,#0090ff,#0040ff +#0087ff,#0046ff,#005bff,#0066ff +#061aff,#3f3fff,#0061e6,#0099e5 +#003ddd,#001ccc,#0619c0 +#0019a3,#002795 +#0c1522,#0f222f +#00e5ff,#01d6d6,#00899e,#0b1e23 +#fafafa,#f8f8f8,#f7f7f7,#fafbf9 +#f0f0f0,#f0f1f1,#eeeeee,#ededed +#e8e8e8,#e5e5e5,#e2e2e2 +#dcdcdc,#d8d8d8,#d6d6d6,#d1d1d1 +#cccccc,#c8c8c8,#ccd0c7,#bbbbbb +#b8b8b8,#a3a3a3,#9a9a9a,#999999 +#897e7e,#666666,#5f5f5f +#505050,#4c4c4c,#403c3d,#3f3f3f +#e5007e,#bf3995,#260013 diff --git a/icons/mappings/kindred.csv b/icons/mappings/kindred.csv new file mode 100644 index 0000000000..132823c13e --- /dev/null +++ b/icons/mappings/kindred.csv @@ -0,0 +1,43 @@ +#f9e2af,#f8c459,#bc8009,#664506 +#a6e3a1,#6cd163,#359b2e,#1c5017 +#fab387,#f77e33,#b44908,#6e2d04 +#89b4fa,#307bf7,#0846b3,#052459 +#cba6f7,#8a39ec,#5710ad,#290850 +#f5c2e7,#e86ec6,#b11b87,#490b38 +#f2cdcd,#d76363,#912424,#4c1313 +#94e2d5,#54d1bc,#258e7e,#103b35 +#cdd6f4,#7f849c,#6c7086,#585b70 +#45475a,#313244,#1e1e2e,#11111b +#f9d791,#f9d487,#f8cf78,#f8ca69 +#f9dea3,#f8ca69,#f8ca69,#f8ca69 +#f8d07c,#f8d07c,#f8ca69,#f8ca69 +#c28711,#ad7608,#b07809,#ebb547 +#f9d487,#f8d17e,#d29926,#664506 +#664506 +#f7863f,#f7863f,#c35512 +#e9aaaa,#e9aaaa,#f2cdcd,#f2cdcd +#df8383,#da6e6e,#cb5858,#9a2c2c +#581616,#4f1414,#4f1414 +#89da82,#89da82,#89da82,#86d97f +#61c658,#47ad40,#a6e3a1 +#308c29,#318e2a,#1c5017,#1c5017 +#89b4fa,#89b4fa,#89b4fa,#89b4fa +#89b4fa,#89b4fa,#89b4fa,#89b4fa +#7cacfa,#89b4fa,#659df9,#679ef9 +#78a9f9,#4f8ff8,#6aa0f9 +#5190f8,#5190f8,#5190f8,#5190f8 +#5190f8,#5190f8,#5190f8,#5190f8 +#5693f8,#86b2fa,#3c83f7,#3b82f7 +#347ef7,#266ee6,#2168de +#0845b0,#0841a6 +#05255a,#052966 +#74dac8,#49c1ad,#258d7d,#103b35 +#b7bfdc,#afb6d2,#aab2cd,#b7bfdc +#8c92ab,#8e94ad,#8389a1,#7f849c +#7b8098,#797e95,#777c93 +#73778e,#70748a,#6e7289,#6a6e84 +#676a80,#63677d,#676a80,#595c71 +#585b70,#585b70,#585b70,#585b70 +#434558,#38394b,#353648 +#2e2f41,#2c2d3e,#252536,#252536 +#9b56ef,#a86cf1,#290850 diff --git a/icons/retheme.py b/icons/retheme.py new file mode 100644 index 0000000000..3edb5ea2a4 --- /dev/null +++ b/icons/retheme.py @@ -0,0 +1,209 @@ +#!/usr/bin/env python3 +"""Retheme FreeCAD SVG icons by replacing color palettes. + +Reads two CSV files with matching rows (source and target palettes), +builds a color mapping, and applies it to all SVG files found in the +input directories. + +Usage: + python icons/retheme.py [options] + python icons/retheme.py --dry-run +""" + +import argparse +import csv +import re +import sys +from pathlib import Path + +SCRIPT_DIR = Path(__file__).resolve().parent +REPO_ROOT = SCRIPT_DIR.parent + +DEFAULT_SOURCE = SCRIPT_DIR / "mappings" / "FCAD.csv" +DEFAULT_TARGET = SCRIPT_DIR / "mappings" / "kindred.csv" +DEFAULT_OUTPUT = SCRIPT_DIR / "themed" + +# Default input dirs: core GUI icons + all module icons +DEFAULT_INPUT_DIRS = [ + REPO_ROOT / "src" / "Gui" / "Icons", + *sorted(REPO_ROOT.glob("src/Mod/*/Gui/Resources/icons")), + *sorted(REPO_ROOT.glob("src/Mod/*/Resources/icons")), +] + + +def load_palette(path: Path) -> list[list[str]]: + """Load a palette CSV. Each row is a list of hex color strings.""" + rows = [] + with open(path) as f: + reader = csv.reader(f) + for row in reader: + colors = [] + for cell in row: + cell = cell.strip() + if cell: + if not cell.startswith("#"): + cell = "#" + cell + colors.append(cell.lower()) + if colors: + rows.append(colors) + return rows + + +def build_mapping(source_path: Path, target_path: Path) -> dict[str, str]: + """Build a {source_hex: target_hex} dict from two palette CSVs.""" + source = load_palette(source_path) + target = load_palette(target_path) + + if len(source) != len(target): + print( + f"Error: palette row count mismatch: " + f"{source_path.name} has {len(source)} rows, " + f"{target_path.name} has {len(target)} rows", + file=sys.stderr, + ) + sys.exit(1) + + mapping = {} + for i, (src_row, tgt_row) in enumerate(zip(source, target)): + if len(src_row) != len(tgt_row): + print( + f"Error: column count mismatch on row {i + 1}: " + f"{len(src_row)} source colors vs {len(tgt_row)} target colors", + file=sys.stderr, + ) + sys.exit(1) + for src, tgt in zip(src_row, tgt_row): + mapping[src] = tgt + + return mapping + + +def retheme_svg(content: str, mapping: dict[str, str]) -> tuple[str, dict[str, int]]: + """Replace all mapped hex colors in SVG content. + + Returns the modified content and a dict of {color: replacement_count}. + """ + stats: dict[str, int] = {} + + def replacer(match: re.Match) -> str: + color = match.group(0).lower() + target = mapping.get(color) + if target is not None: + stats[color] = stats.get(color, 0) + 1 + # Preserve original case style (all-lower for consistency) + return target + return match.group(0) + + result = re.sub(r"#[0-9a-fA-F]{6}\b", replacer, content) + return result, stats + + +def collect_svgs(input_dirs: list[Path]) -> list[Path]: + """Collect all .svg files from input directories, recursively.""" + svgs = [] + for d in input_dirs: + if d.is_dir(): + svgs.extend(sorted(d.rglob("*.svg"))) + return svgs + + +def main(): + parser = argparse.ArgumentParser(description=__doc__) + parser.add_argument( + "--source-palette", + type=Path, + default=DEFAULT_SOURCE, + help=f"Source palette CSV (default: {DEFAULT_SOURCE.relative_to(REPO_ROOT)})", + ) + parser.add_argument( + "--target-palette", + type=Path, + default=DEFAULT_TARGET, + help=f"Target palette CSV (default: {DEFAULT_TARGET.relative_to(REPO_ROOT)})", + ) + parser.add_argument( + "--input-dir", + type=Path, + action="append", + dest="input_dirs", + help="Input directory containing SVGs (can be repeated; default: FreeCAD icon dirs)", + ) + parser.add_argument( + "--output-dir", + type=Path, + default=DEFAULT_OUTPUT, + help=f"Output directory for themed SVGs (default: {DEFAULT_OUTPUT.relative_to(REPO_ROOT)})", + ) + parser.add_argument( + "--dry-run", + action="store_true", + help="Show what would be done without writing files", + ) + args = parser.parse_args() + + input_dirs = args.input_dirs or DEFAULT_INPUT_DIRS + + # Build color mapping + mapping = build_mapping(args.source_palette, args.target_palette) + print(f"Loaded {len(mapping)} color mappings") + for src, tgt in mapping.items(): + print(f" {src} -> {tgt}") + + # Collect SVGs + svgs = collect_svgs(input_dirs) + print(f"\nFound {len(svgs)} SVG files across {len(input_dirs)} directories") + + if not svgs: + print("No SVGs found. Check --input-dir paths.", file=sys.stderr) + sys.exit(1) + + # Process + if not args.dry_run: + args.output_dir.mkdir(parents=True, exist_ok=True) + + total_files = 0 + total_replacements = 0 + all_unmapped: dict[str, int] = {} + seen_names: set[str] = set() + + for svg_path in svgs: + # Skip duplicates (same filename from different subdirectories) + if svg_path.name in seen_names: + continue + seen_names.add(svg_path.name) + + content = svg_path.read_text(encoding="utf-8") + + themed, stats = retheme_svg(content, mapping) + + total_files += 1 + file_replacements = sum(stats.values()) + total_replacements += file_replacements + + if not args.dry_run: + out_path = args.output_dir / svg_path.name + out_path.write_text(themed, encoding="utf-8") + + # Track unmapped colors in this file + for match in re.finditer(r"#[0-9a-fA-F]{6}\b", content): + color = match.group(0).lower() + if color not in mapping: + all_unmapped[color] = all_unmapped.get(color, 0) + 1 + + # Summary + action = "Would write" if args.dry_run else "Wrote" + print( + f"\n{action} {total_files} themed SVGs with {total_replacements} color replacements" + ) + print(f" Output: {args.output_dir}") + + if all_unmapped: + print(f"\nUnmapped colors ({len(all_unmapped)} unique):") + for color, count in sorted(all_unmapped.items(), key=lambda x: -x[1])[:20]: + print(f" {color} ({count} occurrences)") + if len(all_unmapped) > 20: + print(f" ... and {len(all_unmapped) - 20} more") + + +if __name__ == "__main__": + main() diff --git a/icons/themed/AddonManager.svg b/icons/themed/AddonManager.svg new file mode 100644 index 0000000000..be337dbee8 --- /dev/null +++ b/icons/themed/AddonManager.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_3Views.svg b/icons/themed/Arch_3Views.svg new file mode 100644 index 0000000000..80dee79520 --- /dev/null +++ b/icons/themed/Arch_3Views.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_3Views + 2014-08-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_3Views.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Add.svg b/icons/themed/Arch_Add.svg new file mode 100644 index 0000000000..251529f59e --- /dev/null +++ b/icons/themed/Arch_Add.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Add + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Add.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Axis.svg b/icons/themed/Arch_Axis.svg new file mode 100644 index 0000000000..a6e91ee5bf --- /dev/null +++ b/icons/themed/Arch_Axis.svg @@ -0,0 +1,335 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Axis_System.svg b/icons/themed/Arch_Axis_System.svg new file mode 100644 index 0000000000..ca75bcbb73 --- /dev/null +++ b/icons/themed/Arch_Axis_System.svg @@ -0,0 +1,426 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Axis_System_Tree.svg b/icons/themed/Arch_Axis_System_Tree.svg new file mode 100644 index 0000000000..caf15576b0 --- /dev/null +++ b/icons/themed/Arch_Axis_System_Tree.svg @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis_Tree + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Axis_Tree.svg b/icons/themed/Arch_Axis_Tree.svg new file mode 100644 index 0000000000..6c5668d44e --- /dev/null +++ b/icons/themed/Arch_Axis_Tree.svg @@ -0,0 +1,335 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis_Tree + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Bimserver.svg b/icons/themed/Arch_Bimserver.svg new file mode 100644 index 0000000000..8a316a66e5 --- /dev/null +++ b/icons/themed/Arch_Bimserver.svg @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Building.svg b/icons/themed/Arch_Building.svg new file mode 100644 index 0000000000..034323b402 --- /dev/null +++ b/icons/themed/Arch_Building.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Building + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Building.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_BuildingPart.svg b/icons/themed/Arch_BuildingPart.svg new file mode 100644 index 0000000000..7e38a56384 --- /dev/null +++ b/icons/themed/Arch_BuildingPart.svg @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Floor + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_BuildingPart_Tree.svg b/icons/themed/Arch_BuildingPart_Tree.svg new file mode 100644 index 0000000000..284f318699 --- /dev/null +++ b/icons/themed/Arch_BuildingPart_Tree.svg @@ -0,0 +1,462 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Floor + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/Arch_Building_Tree.svg b/icons/themed/Arch_Building_Tree.svg new file mode 100644 index 0000000000..e263b24318 --- /dev/null +++ b/icons/themed/Arch_Building_Tree.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Building_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Building_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Cell.svg b/icons/themed/Arch_Cell.svg new file mode 100644 index 0000000000..8248761a4d --- /dev/null +++ b/icons/themed/Arch_Cell.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Cell + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Cell.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Cell_Tree.svg b/icons/themed/Arch_Cell_Tree.svg new file mode 100644 index 0000000000..af78474838 --- /dev/null +++ b/icons/themed/Arch_Cell_Tree.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Cell_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Cell_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Check.svg b/icons/themed/Arch_Check.svg new file mode 100644 index 0000000000..d3363e7bf3 --- /dev/null +++ b/icons/themed/Arch_Check.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Check + 2012-07-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Check.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_CloseHoles.svg b/icons/themed/Arch_CloseHoles.svg new file mode 100644 index 0000000000..48c83afda1 --- /dev/null +++ b/icons/themed/Arch_CloseHoles.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_CloseHoles + 2012-07-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_CloseHoles.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Component.svg b/icons/themed/Arch_Component.svg new file mode 100644 index 0000000000..44136ea470 --- /dev/null +++ b/icons/themed/Arch_Component.svg @@ -0,0 +1,580 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Component + 2015-04-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Component.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Component_Clone.svg b/icons/themed/Arch_Component_Clone.svg new file mode 100644 index 0000000000..1ccf0c946f --- /dev/null +++ b/icons/themed/Arch_Component_Clone.svg @@ -0,0 +1,627 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Component + 2015-04-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Component.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Component_Tree.svg b/icons/themed/Arch_Component_Tree.svg new file mode 100644 index 0000000000..9716a7998d --- /dev/null +++ b/icons/themed/Arch_Component_Tree.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Component + 2015-04-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Component.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_CurtainWall.svg b/icons/themed/Arch_CurtainWall.svg new file mode 100644 index 0000000000..8e44814565 --- /dev/null +++ b/icons/themed/Arch_CurtainWall.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Site + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_CurtainWall_Tree.svg b/icons/themed/Arch_CurtainWall_Tree.svg new file mode 100644 index 0000000000..7a3d25a686 --- /dev/null +++ b/icons/themed/Arch_CurtainWall_Tree.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Site + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_CutPlane.svg b/icons/themed/Arch_CutPlane.svg new file mode 100644 index 0000000000..78cce6a7c4 --- /dev/null +++ b/icons/themed/Arch_CutPlane.svg @@ -0,0 +1,159 @@ + + + + + Arch_CutPlane + + + + + + + + + + + + + + + + image/svg+xml + + + + [wood galaxy] + + + Arch_CutPlane + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_CutPlane.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Equipment.svg b/icons/themed/Arch_Equipment.svg new file mode 100644 index 0000000000..fa2e6d3956 --- /dev/null +++ b/icons/themed/Arch_Equipment.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Equipment + 2014-08-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Equipment.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Equipment_Clone.svg b/icons/themed/Arch_Equipment_Clone.svg new file mode 100644 index 0000000000..95ae423825 --- /dev/null +++ b/icons/themed/Arch_Equipment_Clone.svg @@ -0,0 +1,1132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Equipment_Clone + 2016-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Equipment_Clone.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Equipment_Tree.svg b/icons/themed/Arch_Equipment_Tree.svg new file mode 100644 index 0000000000..a57c0d90e9 --- /dev/null +++ b/icons/themed/Arch_Equipment_Tree.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Equipment_Tree + 2014-08-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Equipment_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Fence.svg b/icons/themed/Arch_Fence.svg new file mode 100644 index 0000000000..26a5f2f79d --- /dev/null +++ b/icons/themed/Arch_Fence.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Site_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Fence_Tree.svg b/icons/themed/Arch_Fence_Tree.svg new file mode 100644 index 0000000000..69654a65e6 --- /dev/null +++ b/icons/themed/Arch_Fence_Tree.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Site_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Fixture.svg b/icons/themed/Arch_Fixture.svg new file mode 100644 index 0000000000..3b7354092f --- /dev/null +++ b/icons/themed/Arch_Fixture.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Fixture + 2013-07-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Floor.svg b/icons/themed/Arch_Floor.svg new file mode 100644 index 0000000000..8439999beb --- /dev/null +++ b/icons/themed/Arch_Floor.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Floor + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Floor_Tree.svg b/icons/themed/Arch_Floor_Tree.svg new file mode 100644 index 0000000000..f1822bd387 --- /dev/null +++ b/icons/themed/Arch_Floor_Tree.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Floor_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Frame.svg b/icons/themed/Arch_Frame.svg new file mode 100644 index 0000000000..4af2c6bef6 --- /dev/null +++ b/icons/themed/Arch_Frame.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Frame + 2013-12-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Frame_Tree.svg b/icons/themed/Arch_Frame_Tree.svg new file mode 100644 index 0000000000..2a340b742e --- /dev/null +++ b/icons/themed/Arch_Frame_Tree.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Frame_Tree + 2013-12-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Grid.svg b/icons/themed/Arch_Grid.svg new file mode 100644 index 0000000000..f42d238a62 --- /dev/null +++ b/icons/themed/Arch_Grid.svg @@ -0,0 +1,410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Material.svg b/icons/themed/Arch_Material.svg new file mode 100644 index 0000000000..b4012193f0 --- /dev/null +++ b/icons/themed/Arch_Material.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Material + 2015-04-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Material.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Arch_Material_Group.svg b/icons/themed/Arch_Material_Group.svg new file mode 100644 index 0000000000..9e76b4b00d --- /dev/null +++ b/icons/themed/Arch_Material_Group.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Yorik van Havre] + + + Arch_Material_Group + 2015-04-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Material_Group.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Material_Multi.svg b/icons/themed/Arch_Material_Multi.svg new file mode 100644 index 0000000000..0555e173fe --- /dev/null +++ b/icons/themed/Arch_Material_Multi.svg @@ -0,0 +1,857 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Material_Group + 2015-04-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Material_Group.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_MergeWalls.svg b/icons/themed/Arch_MergeWalls.svg new file mode 100644 index 0000000000..d85f0655e7 --- /dev/null +++ b/icons/themed/Arch_MergeWalls.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_MergeWalls + 2013-03-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_MergeWalls.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_MeshToShape.svg b/icons/themed/Arch_MeshToShape.svg new file mode 100644 index 0000000000..53e3f0c393 --- /dev/null +++ b/icons/themed/Arch_MeshToShape.svg @@ -0,0 +1,122 @@ + + + + Mesh_Mesh_from_Shape + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Mesh_from_Shape + + Solid cube with arrow pointing towards a tessellated cube mesh + + + [agryson] Alexander Gryson + + + + + cube + mesh + solid + convert + tessellated + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + Sat Dec 14 00:58:58 2013 +1100 + + + [jmaustpc] + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_MultipleStructures.svg b/icons/themed/Arch_MultipleStructures.svg new file mode 100644 index 0000000000..93743a1c8a --- /dev/null +++ b/icons/themed/Arch_MultipleStructures.svg @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Antoine Lafr + + + Arch_Structure + 2020-04-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_MultipleStructures.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Nest.svg b/icons/themed/Arch_Nest.svg new file mode 100644 index 0000000000..5d9bd95fdc --- /dev/null +++ b/icons/themed/Arch_Nest.svg @@ -0,0 +1,680 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Panel_Sheet + 2016-12-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel_Sheet.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Panel.svg b/icons/themed/Arch_Panel.svg new file mode 100644 index 0000000000..926c43c38a --- /dev/null +++ b/icons/themed/Arch_Panel.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Panel + 2014-04-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Panel_Clone.svg b/icons/themed/Arch_Panel_Clone.svg new file mode 100644 index 0000000000..537b8aceb0 --- /dev/null +++ b/icons/themed/Arch_Panel_Clone.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Panel_Clone + 2016-12-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel_Clone.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Panel_Cut.svg b/icons/themed/Arch_Panel_Cut.svg new file mode 100644 index 0000000000..6b63ba2f38 --- /dev/null +++ b/icons/themed/Arch_Panel_Cut.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Panel_Cut + 2016-12-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel_Cut.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Panel_Sheet.svg b/icons/themed/Arch_Panel_Sheet.svg new file mode 100644 index 0000000000..87f0297c4a --- /dev/null +++ b/icons/themed/Arch_Panel_Sheet.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Panel_Sheet + 2016-12-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel_Sheet.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Panel_Sheet_Tree.svg b/icons/themed/Arch_Panel_Sheet_Tree.svg new file mode 100644 index 0000000000..d497b2e055 --- /dev/null +++ b/icons/themed/Arch_Panel_Sheet_Tree.svg @@ -0,0 +1,234 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Yorik van Havre] + + + Arch_Panel_Sheet_Tree + 2016-12-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel_Sheet_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Panel_Tree.svg b/icons/themed/Arch_Panel_Tree.svg new file mode 100644 index 0000000000..ecf2fbc95f --- /dev/null +++ b/icons/themed/Arch_Panel_Tree.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Panel_Tree + 2014-04-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Panel_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Pipe.svg b/icons/themed/Arch_Pipe.svg new file mode 100644 index 0000000000..e1b2f235e8 --- /dev/null +++ b/icons/themed/Arch_Pipe.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Pipe + 2016-08-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Pipe.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_PipeConnector.svg b/icons/themed/Arch_PipeConnector.svg new file mode 100644 index 0000000000..872d9c22bc --- /dev/null +++ b/icons/themed/Arch_PipeConnector.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_PipeConnector + 2016-08-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_PipeConnector.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Pipe_Tree.svg b/icons/themed/Arch_Pipe_Tree.svg new file mode 100644 index 0000000000..674ec714b8 --- /dev/null +++ b/icons/themed/Arch_Pipe_Tree.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Pipe_Tree + 2016-08-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Pipe_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Profile.svg b/icons/themed/Arch_Profile.svg new file mode 100644 index 0000000000..040898e80a --- /dev/null +++ b/icons/themed/Arch_Profile.svg @@ -0,0 +1,477 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Floor + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/Arch_Project.svg b/icons/themed/Arch_Project.svg new file mode 100644 index 0000000000..5220b31631 --- /dev/null +++ b/icons/themed/Arch_Project.svg @@ -0,0 +1,423 @@ + + + + + ifc_project_icon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + ifc_project_icon + + + [bitacovir] Rafael Moya + + + Part_Box + 2019-06-16 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Project_Tree.svg b/icons/themed/Arch_Project_Tree.svg new file mode 100644 index 0000000000..d8054f65be --- /dev/null +++ b/icons/themed/Arch_Project_Tree.svg @@ -0,0 +1,435 @@ + + + + + ifc_project_tree + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + ifc_project_tree + + + [bitacovir] Rafael Moya + + + Part_Box + 2019-06-16 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Rebar.svg b/icons/themed/Arch_Rebar.svg new file mode 100644 index 0000000000..d28ed8da90 --- /dev/null +++ b/icons/themed/Arch_Rebar.svg @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Rebar + 2013-10-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Rebar.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Rebar_Tree.svg b/icons/themed/Arch_Rebar_Tree.svg new file mode 100644 index 0000000000..6f3419eb01 --- /dev/null +++ b/icons/themed/Arch_Rebar_Tree.svg @@ -0,0 +1,169 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Rebar_Tree + 2013-10-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Rebar_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Reference.svg b/icons/themed/Arch_Reference.svg new file mode 100644 index 0000000000..74828ff813 --- /dev/null +++ b/icons/themed/Arch_Reference.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Remove.svg b/icons/themed/Arch_Remove.svg new file mode 100644 index 0000000000..1e76274c7e --- /dev/null +++ b/icons/themed/Arch_Remove.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Remove + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Remove.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_RemoveShape.svg b/icons/themed/Arch_RemoveShape.svg new file mode 100644 index 0000000000..0c2243b473 --- /dev/null +++ b/icons/themed/Arch_RemoveShape.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_RemoveShape + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_RemoveShape.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Roof.svg b/icons/themed/Arch_Roof.svg new file mode 100644 index 0000000000..c7b9bdb61b --- /dev/null +++ b/icons/themed/Arch_Roof.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Roof + 2012-05-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Roof.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Arch_Roof_Tree.svg b/icons/themed/Arch_Roof_Tree.svg new file mode 100644 index 0000000000..88f39e3f80 --- /dev/null +++ b/icons/themed/Arch_Roof_Tree.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Roof_Tree + 2012-05-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Roof_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Arch_Schedule.svg b/icons/themed/Arch_Schedule.svg new file mode 100644 index 0000000000..0e196f5903 --- /dev/null +++ b/icons/themed/Arch_Schedule.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Schedule + 2015-04-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Schedule.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_SectionPlane.svg b/icons/themed/Arch_SectionPlane.svg new file mode 100644 index 0000000000..737de51a2a --- /dev/null +++ b/icons/themed/Arch_SectionPlane.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_SectionPlane + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_SectionPlane.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_SectionPlane_Tree.svg b/icons/themed/Arch_SectionPlane_Tree.svg new file mode 100644 index 0000000000..4bcad57d86 --- /dev/null +++ b/icons/themed/Arch_SectionPlane_Tree.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_SectionPlane_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_SectionPlane_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_SelectNonManifold.svg b/icons/themed/Arch_SelectNonManifold.svg new file mode 100644 index 0000000000..00fd2aed51 --- /dev/null +++ b/icons/themed/Arch_SelectNonManifold.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_SelectNonManifold + 2012-07-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_SelectNonManifold.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Site.svg b/icons/themed/Arch_Site.svg new file mode 100644 index 0000000000..8f2cbe53df --- /dev/null +++ b/icons/themed/Arch_Site.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Site + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Site_Tree.svg b/icons/themed/Arch_Site_Tree.svg new file mode 100644 index 0000000000..b4dc5d2b22 --- /dev/null +++ b/icons/themed/Arch_Site_Tree.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Site_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Space.svg b/icons/themed/Arch_Space.svg new file mode 100644 index 0000000000..b09bd06d25 --- /dev/null +++ b/icons/themed/Arch_Space.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Space + 2013-07-16 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Space.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Space_Clone.svg b/icons/themed/Arch_Space_Clone.svg new file mode 100644 index 0000000000..b537e9f859 --- /dev/null +++ b/icons/themed/Arch_Space_Clone.svg @@ -0,0 +1,737 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Space_Tree + 2013-07-16 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Space_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Space_Tree.svg b/icons/themed/Arch_Space_Tree.svg new file mode 100644 index 0000000000..80294d2291 --- /dev/null +++ b/icons/themed/Arch_Space_Tree.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Space_Tree + 2013-07-16 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Space_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_SplitMesh.svg b/icons/themed/Arch_SplitMesh.svg new file mode 100644 index 0000000000..bd6d6bcc3e --- /dev/null +++ b/icons/themed/Arch_SplitMesh.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_SplitMesh + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_SplitMesh.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Stairs.svg b/icons/themed/Arch_Stairs.svg new file mode 100644 index 0000000000..92a09ba781 --- /dev/null +++ b/icons/themed/Arch_Stairs.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Stairs + 2013-07-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Stairs.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Stairs_Tree.svg b/icons/themed/Arch_Stairs_Tree.svg new file mode 100644 index 0000000000..d0f13153ff --- /dev/null +++ b/icons/themed/Arch_Stairs_Tree.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Stairs_Tree + 2013-07-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Stairs_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_StructuralSystem.svg b/icons/themed/Arch_StructuralSystem.svg new file mode 100644 index 0000000000..79fea48414 --- /dev/null +++ b/icons/themed/Arch_StructuralSystem.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_StructuralSystem + 2014-03-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_StructuralSystem.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_StructuralSystem_Tree.svg b/icons/themed/Arch_StructuralSystem_Tree.svg new file mode 100644 index 0000000000..c1d4d8402b --- /dev/null +++ b/icons/themed/Arch_StructuralSystem_Tree.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_StructuralSystem_Tree + 2014-03-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_StructuralSystem_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Structure.svg b/icons/themed/Arch_Structure.svg new file mode 100644 index 0000000000..15af2ecd1a --- /dev/null +++ b/icons/themed/Arch_Structure.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Structure_Clone.svg b/icons/themed/Arch_Structure_Clone.svg new file mode 100644 index 0000000000..2a25804433 --- /dev/null +++ b/icons/themed/Arch_Structure_Clone.svg @@ -0,0 +1,738 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Structure_Clone + 2016-06-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure_Clone.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Structure_Tree.svg b/icons/themed/Arch_Structure_Tree.svg new file mode 100644 index 0000000000..4664a7866f --- /dev/null +++ b/icons/themed/Arch_Structure_Tree.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Structure_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Subcomponent.svg b/icons/themed/Arch_Subcomponent.svg new file mode 100644 index 0000000000..c24658b766 --- /dev/null +++ b/icons/themed/Arch_Subcomponent.svg @@ -0,0 +1,291 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Component + 2015-04-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Component.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Survey.svg b/icons/themed/Arch_Survey.svg new file mode 100644 index 0000000000..9546a912cf --- /dev/null +++ b/icons/themed/Arch_Survey.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Survey + 2014-02-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Survey.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_ToggleIfcBrepFlag.svg b/icons/themed/Arch_ToggleIfcBrepFlag.svg new file mode 100644 index 0000000000..3ea71d7e90 --- /dev/null +++ b/icons/themed/Arch_ToggleIfcBrepFlag.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_ToggleIfcBrepFlag + 2014-07-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ToggleIfcBrep + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_ToggleSubs.svg b/icons/themed/Arch_ToggleSubs.svg new file mode 100644 index 0000000000..acfa4f5094 --- /dev/null +++ b/icons/themed/Arch_ToggleSubs.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_ToggleSubs + 2016-09-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ToggleSubs.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Truss.svg b/icons/themed/Arch_Truss.svg new file mode 100644 index 0000000000..7ffdc25ff0 --- /dev/null +++ b/icons/themed/Arch_Truss.svg @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Truss_Tree.svg b/icons/themed/Arch_Truss_Tree.svg new file mode 100644 index 0000000000..72c69309dc --- /dev/null +++ b/icons/themed/Arch_Truss_Tree.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Axis + 2011-12-12 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Axis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + diff --git a/icons/themed/Arch_View_Cut.svg b/icons/themed/Arch_View_Cut.svg new file mode 100644 index 0000000000..160cf0ffbb --- /dev/null +++ b/icons/themed/Arch_View_Cut.svg @@ -0,0 +1,476 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Arch_Floor + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Wall.svg b/icons/themed/Arch_Wall.svg new file mode 100644 index 0000000000..8e34bf87ac --- /dev/null +++ b/icons/themed/Arch_Wall.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Wall + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Wall_Clone.svg b/icons/themed/Arch_Wall_Clone.svg new file mode 100644 index 0000000000..fc7b99f8f8 --- /dev/null +++ b/icons/themed/Arch_Wall_Clone.svg @@ -0,0 +1,642 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Wall_Tree.svg b/icons/themed/Arch_Wall_Tree.svg new file mode 100644 index 0000000000..0329ee6913 --- /dev/null +++ b/icons/themed/Arch_Wall_Tree.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Wall_Tree_Assembly.svg b/icons/themed/Arch_Wall_Tree_Assembly.svg new file mode 100644 index 0000000000..61e1daa0f3 --- /dev/null +++ b/icons/themed/Arch_Wall_Tree_Assembly.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Wall_Tree_Assembly + 2013-04-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree_Assembly.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Window.svg b/icons/themed/Arch_Window.svg new file mode 100644 index 0000000000..a2ac1a5a3a --- /dev/null +++ b/icons/themed/Arch_Window.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Window + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Window_Clone.svg b/icons/themed/Arch_Window_Clone.svg new file mode 100644 index 0000000000..a82d93c6c8 --- /dev/null +++ b/icons/themed/Arch_Window_Clone.svg @@ -0,0 +1,972 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Window_Clone + 2016-09-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window_Clone.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Arch_Window_Tree.svg b/icons/themed/Arch_Window_Tree.svg new file mode 100644 index 0000000000..b978c5652e --- /dev/null +++ b/icons/themed/Arch_Window_Tree.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Window_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/AssemblyWorkbench.svg b/icons/themed/AssemblyWorkbench.svg new file mode 100644 index 0000000000..8945ad538f --- /dev/null +++ b/icons/themed/AssemblyWorkbench.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/AssemblyWorkbench_alternate.svg b/icons/themed/AssemblyWorkbench_alternate.svg new file mode 100644 index 0000000000..ed68e31f53 --- /dev/null +++ b/icons/themed/AssemblyWorkbench_alternate.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_ActivateAssembly.svg b/icons/themed/Assembly_ActivateAssembly.svg new file mode 100644 index 0000000000..817f98ffec --- /dev/null +++ b/icons/themed/Assembly_ActivateAssembly.svg @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_AssemblyLink.svg b/icons/themed/Assembly_AssemblyLink.svg new file mode 100644 index 0000000000..2924a216eb --- /dev/null +++ b/icons/themed/Assembly_AssemblyLink.svg @@ -0,0 +1,359 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_AssemblyLinkRigid.svg b/icons/themed/Assembly_AssemblyLinkRigid.svg new file mode 100644 index 0000000000..9600aac493 --- /dev/null +++ b/icons/themed/Assembly_AssemblyLinkRigid.svg @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_BillOfMaterials.svg b/icons/themed/Assembly_BillOfMaterials.svg new file mode 100644 index 0000000000..0133787ea3 --- /dev/null +++ b/icons/themed/Assembly_BillOfMaterials.svg @@ -0,0 +1,600 @@ + + diff --git a/icons/themed/Assembly_BillOfMaterialsGroup.svg b/icons/themed/Assembly_BillOfMaterialsGroup.svg new file mode 100644 index 0000000000..e10f369177 --- /dev/null +++ b/icons/themed/Assembly_BillOfMaterialsGroup.svg @@ -0,0 +1,298 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointAngle.svg b/icons/themed/Assembly_CreateJointAngle.svg new file mode 100644 index 0000000000..18150b937f --- /dev/null +++ b/icons/themed/Assembly_CreateJointAngle.svg @@ -0,0 +1,247 @@ + +image/svg+xml[wmayer]Part_Cylinder2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Assembly_CreateJointBall.svg b/icons/themed/Assembly_CreateJointBall.svg new file mode 100644 index 0000000000..13f9f93f90 --- /dev/null +++ b/icons/themed/Assembly_CreateJointBall.svg @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Sphere + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Sphere.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointCylindrical.svg b/icons/themed/Assembly_CreateJointCylindrical.svg new file mode 100644 index 0000000000..1042c3df40 --- /dev/null +++ b/icons/themed/Assembly_CreateJointCylindrical.svg @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointDistance.svg b/icons/themed/Assembly_CreateJointDistance.svg new file mode 100644 index 0000000000..d1a0449e6f --- /dev/null +++ b/icons/themed/Assembly_CreateJointDistance.svg @@ -0,0 +1,251 @@ + + + +image/svg+xml[wmayer]Part_Cylinder2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Assembly_CreateJointFixed.svg b/icons/themed/Assembly_CreateJointFixed.svg new file mode 100644 index 0000000000..648549a90c --- /dev/null +++ b/icons/themed/Assembly_CreateJointFixed.svg @@ -0,0 +1,361 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Part_Cylinder + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointGears.svg b/icons/themed/Assembly_CreateJointGears.svg new file mode 100644 index 0000000000..e3c4eb5e02 --- /dev/null +++ b/icons/themed/Assembly_CreateJointGears.svg @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointParallel.svg b/icons/themed/Assembly_CreateJointParallel.svg new file mode 100644 index 0000000000..3d725061e3 --- /dev/null +++ b/icons/themed/Assembly_CreateJointParallel.svg @@ -0,0 +1,240 @@ + +image/svg+xml[wmayer]Part_Cylinder2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Assembly_CreateJointPerpendicular.svg b/icons/themed/Assembly_CreateJointPerpendicular.svg new file mode 100644 index 0000000000..ab74a632f2 --- /dev/null +++ b/icons/themed/Assembly_CreateJointPerpendicular.svg @@ -0,0 +1,237 @@ + +image/svg+xml[wmayer]Part_Cylinder2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Assembly_CreateJointPlanar.svg b/icons/themed/Assembly_CreateJointPlanar.svg new file mode 100644 index 0000000000..c20dc5ac61 --- /dev/null +++ b/icons/themed/Assembly_CreateJointPlanar.svg @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Part_Cylinder + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointPulleys.svg b/icons/themed/Assembly_CreateJointPulleys.svg new file mode 100644 index 0000000000..87767d3a12 --- /dev/null +++ b/icons/themed/Assembly_CreateJointPulleys.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointRackPinion.svg b/icons/themed/Assembly_CreateJointRackPinion.svg new file mode 100644 index 0000000000..801905ee67 --- /dev/null +++ b/icons/themed/Assembly_CreateJointRackPinion.svg @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointRevolute.svg b/icons/themed/Assembly_CreateJointRevolute.svg new file mode 100644 index 0000000000..9ee7cb7c90 --- /dev/null +++ b/icons/themed/Assembly_CreateJointRevolute.svg @@ -0,0 +1,260 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointScrew.svg b/icons/themed/Assembly_CreateJointScrew.svg new file mode 100644 index 0000000000..b624112e08 --- /dev/null +++ b/icons/themed/Assembly_CreateJointScrew.svg @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointSlider.svg b/icons/themed/Assembly_CreateJointSlider.svg new file mode 100644 index 0000000000..ef82b77a40 --- /dev/null +++ b/icons/themed/Assembly_CreateJointSlider.svg @@ -0,0 +1,534 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateJointTangent.svg b/icons/themed/Assembly_CreateJointTangent.svg new file mode 100644 index 0000000000..7c061f2163 --- /dev/null +++ b/icons/themed/Assembly_CreateJointTangent.svg @@ -0,0 +1,342 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Sphere + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Sphere.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_CreateSimulation.svg b/icons/themed/Assembly_CreateSimulation.svg new file mode 100644 index 0000000000..33a8db7b09 --- /dev/null +++ b/icons/themed/Assembly_CreateSimulation.svg @@ -0,0 +1,1406 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_ExplodedView.svg b/icons/themed/Assembly_ExplodedView.svg new file mode 100644 index 0000000000..ee0f101442 --- /dev/null +++ b/icons/themed/Assembly_ExplodedView.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_ExplodedViewGroup.svg b/icons/themed/Assembly_ExplodedViewGroup.svg new file mode 100644 index 0000000000..efb3d97497 --- /dev/null +++ b/icons/themed/Assembly_ExplodedViewGroup.svg @@ -0,0 +1,356 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_ExportASMT.svg b/icons/themed/Assembly_ExportASMT.svg new file mode 100644 index 0000000000..ef454c4740 --- /dev/null +++ b/icons/themed/Assembly_ExportASMT.svg @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_InsertLink.svg b/icons/themed/Assembly_InsertLink.svg new file mode 100644 index 0000000000..43d70fd6ae --- /dev/null +++ b/icons/themed/Assembly_InsertLink.svg @@ -0,0 +1,381 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_JointGroup.svg b/icons/themed/Assembly_JointGroup.svg new file mode 100644 index 0000000000..08833260bf --- /dev/null +++ b/icons/themed/Assembly_JointGroup.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_SimulationGroup.svg b/icons/themed/Assembly_SimulationGroup.svg new file mode 100644 index 0000000000..77fedd0259 --- /dev/null +++ b/icons/themed/Assembly_SimulationGroup.svg @@ -0,0 +1,1434 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_SolveAssembly.svg b/icons/themed/Assembly_SolveAssembly.svg new file mode 100644 index 0000000000..d97c2a3216 --- /dev/null +++ b/icons/themed/Assembly_SolveAssembly.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Assembly_ToggleGrounded.svg b/icons/themed/Assembly_ToggleGrounded.svg new file mode 100644 index 0000000000..d1b0bedba2 --- /dev/null +++ b/icons/themed/Assembly_ToggleGrounded.svg @@ -0,0 +1,441 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Part_Cylinder + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIMWorkbench.svg b/icons/themed/BIMWorkbench.svg new file mode 100644 index 0000000000..0329ee6913 --- /dev/null +++ b/icons/themed/BIMWorkbench.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_ArchView.svg b/icons/themed/BIM_ArchView.svg new file mode 100644 index 0000000000..3b7f264fae --- /dev/null +++ b/icons/themed/BIM_ArchView.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + 2016-10-28 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-arch-view.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Background.svg b/icons/themed/BIM_Background.svg new file mode 100644 index 0000000000..988cd20548 --- /dev/null +++ b/icons/themed/BIM_Background.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + image/svg+xml + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/BIM/Resources/icons/BIM_Background.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Beam.svg b/icons/themed/BIM_Beam.svg new file mode 100644 index 0000000000..9429c23f7e --- /dev/null +++ b/icons/themed/BIM_Beam.svg @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Box.svg b/icons/themed/BIM_Box.svg new file mode 100644 index 0000000000..229e337e38 --- /dev/null +++ b/icons/themed/BIM_Box.svg @@ -0,0 +1,328 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Box + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Classification.svg b/icons/themed/BIM_Classification.svg new file mode 100644 index 0000000000..191750417c --- /dev/null +++ b/icons/themed/BIM_Classification.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Clone.svg b/icons/themed/BIM_Clone.svg new file mode 100644 index 0000000000..ae67094495 --- /dev/null +++ b/icons/themed/BIM_Clone.svg @@ -0,0 +1,535 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Column.svg b/icons/themed/BIM_Column.svg new file mode 100644 index 0000000000..25470395ca --- /dev/null +++ b/icons/themed/BIM_Column.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Copy.svg b/icons/themed/BIM_Copy.svg new file mode 100644 index 0000000000..6a84a7cc24 --- /dev/null +++ b/icons/themed/BIM_Copy.svg @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/BIM_Diff.svg b/icons/themed/BIM_Diff.svg new file mode 100644 index 0000000000..a71e3684eb --- /dev/null +++ b/icons/themed/BIM_Diff.svg @@ -0,0 +1,637 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Building_Tree + 2011-12-06 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Building_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + - + + diff --git a/icons/themed/BIM_DimensionAligned.svg b/icons/themed/BIM_DimensionAligned.svg new file mode 100644 index 0000000000..d17edca5ec --- /dev/null +++ b/icons/themed/BIM_DimensionAligned.svg @@ -0,0 +1,422 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Dimension.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + dot + number + + + A number floating above a line corresponding to the upper three sides of a rectangle with a dot at each endpoint and corner + + + + diff --git a/icons/themed/BIM_DimensionHorizontal.svg b/icons/themed/BIM_DimensionHorizontal.svg new file mode 100644 index 0000000000..b1a153d41d --- /dev/null +++ b/icons/themed/BIM_DimensionHorizontal.svg @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Dimension.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + dot + number + + + A number floating above a line corresponding to the upper three sides of a rectangle with a dot at each endpoint and corner + + + + diff --git a/icons/themed/BIM_DimensionVertical.svg b/icons/themed/BIM_DimensionVertical.svg new file mode 100644 index 0000000000..28b37686a1 --- /dev/null +++ b/icons/themed/BIM_DimensionVertical.svg @@ -0,0 +1,422 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Dimension.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + dot + number + + + A number floating above a line corresponding to the upper three sides of a rectangle with a dot at each endpoint and corner + + + + diff --git a/icons/themed/BIM_Door.svg b/icons/themed/BIM_Door.svg new file mode 100644 index 0000000000..904d7db393 --- /dev/null +++ b/icons/themed/BIM_Door.svg @@ -0,0 +1,539 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Window + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Glue.svg b/icons/themed/BIM_Glue.svg new file mode 100644 index 0000000000..19e8cb9a5d --- /dev/null +++ b/icons/themed/BIM_Glue.svg @@ -0,0 +1,98 @@ + + diff --git a/icons/themed/BIM_Hatch.svg b/icons/themed/BIM_Hatch.svg new file mode 100644 index 0000000000..d77f5c96a0 --- /dev/null +++ b/icons/themed/BIM_Hatch.svg @@ -0,0 +1,179 @@ + + + + TechDraw_TreeHatch + + + + image/svg+xml + + TechDraw_TreeHatch + + + [WandererFan] + + + TechDraw_TreeHatch + 2016-04-27 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeHatch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Help.svg b/icons/themed/BIM_Help.svg new file mode 100644 index 0000000000..9029a4c953 --- /dev/null +++ b/icons/themed/BIM_Help.svg @@ -0,0 +1,2842 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Jakub Steiner + + + + + Tuomas Kuosmanen + + + + http://jimmac.musichall.cz + + + globe + international + web + www + internet + network + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_IfcElements.svg b/icons/themed/BIM_IfcElements.svg new file mode 100644 index 0000000000..4563872786 --- /dev/null +++ b/icons/themed/BIM_IfcElements.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_IfcProperties.svg b/icons/themed/BIM_IfcProperties.svg new file mode 100644 index 0000000000..c4fc64d492 --- /dev/null +++ b/icons/themed/BIM_IfcProperties.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_IfcQuantities.svg b/icons/themed/BIM_IfcQuantities.svg new file mode 100644 index 0000000000..62084f047e --- /dev/null +++ b/icons/themed/BIM_IfcQuantities.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_ImagePlane.svg b/icons/themed/BIM_ImagePlane.svg new file mode 100644 index 0000000000..ef8a6ec964 --- /dev/null +++ b/icons/themed/BIM_ImagePlane.svg @@ -0,0 +1,520 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Drawing.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + page + shapes + + + An arrow pointing from left to right onto a page with shapes drawn on it + + + + diff --git a/icons/themed/BIM_InsertView.svg b/icons/themed/BIM_InsertView.svg new file mode 100644 index 0000000000..ff14b61676 --- /dev/null +++ b/icons/themed/BIM_InsertView.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + image/svg+xml + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Layers.svg b/icons/themed/BIM_Layers.svg new file mode 100644 index 0000000000..61fc6df2af --- /dev/null +++ b/icons/themed/BIM_Layers.svg @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Leader.svg b/icons/themed/BIM_Leader.svg new file mode 100644 index 0000000000..5a75200b51 --- /dev/null +++ b/icons/themed/BIM_Leader.svg @@ -0,0 +1,369 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreatePolyline.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Levels.svg b/icons/themed/BIM_Levels.svg new file mode 100644 index 0000000000..ccd30367ee --- /dev/null +++ b/icons/themed/BIM_Levels.svg @@ -0,0 +1,620 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Building_Tree + 2011-12-06 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Building_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Library.svg b/icons/themed/BIM_Library.svg new file mode 100644 index 0000000000..a8973ce5db --- /dev/null +++ b/icons/themed/BIM_Library.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Box + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Material.svg b/icons/themed/BIM_Material.svg new file mode 100644 index 0000000000..029657f486 --- /dev/null +++ b/icons/themed/BIM_Material.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_MoveView.svg b/icons/themed/BIM_MoveView.svg new file mode 100644 index 0000000000..7970a30768 --- /dev/null +++ b/icons/themed/BIM_MoveView.svg @@ -0,0 +1,1023 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + techdraw-new-default + 2016-01-14 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-new-default.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Nudge.svg b/icons/themed/BIM_Nudge.svg new file mode 100644 index 0000000000..17d992615a --- /dev/null +++ b/icons/themed/BIM_Nudge.svg @@ -0,0 +1,527 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/BIM_PageDefault.svg b/icons/themed/BIM_PageDefault.svg new file mode 100644 index 0000000000..73b050c09b --- /dev/null +++ b/icons/themed/BIM_PageDefault.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + image/svg+xml + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Phases.svg b/icons/themed/BIM_Phases.svg new file mode 100644 index 0000000000..d7ac6fbb8a --- /dev/null +++ b/icons/themed/BIM_Phases.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Preflight.svg b/icons/themed/BIM_Preflight.svg new file mode 100644 index 0000000000..a4516e8fd0 --- /dev/null +++ b/icons/themed/BIM_Preflight.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Project.svg b/icons/themed/BIM_Project.svg new file mode 100644 index 0000000000..a7009c3ca3 --- /dev/null +++ b/icons/themed/BIM_Project.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_ProjectManager.svg b/icons/themed/BIM_ProjectManager.svg new file mode 100644 index 0000000000..31a65a2e45 --- /dev/null +++ b/icons/themed/BIM_ProjectManager.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Building_Tree + 2011-12-06 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Building_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Reextrude.svg b/icons/themed/BIM_Reextrude.svg new file mode 100644 index 0000000000..4b7b4209b3 --- /dev/null +++ b/icons/themed/BIM_Reextrude.svg @@ -0,0 +1,461 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/BIM_Reorder.svg b/icons/themed/BIM_Reorder.svg new file mode 100644 index 0000000000..4fbc08b40c --- /dev/null +++ b/icons/themed/BIM_Reorder.svg @@ -0,0 +1,407 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AddToGroup.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + tree + hierarchy + list + rectangle + + + A parent rectangle with two hierarchically subordinate rectangles with a single detached rectangle between the two children + + + + diff --git a/icons/themed/BIM_Report.svg b/icons/themed/BIM_Report.svg new file mode 100644 index 0000000000..9f44267bbe --- /dev/null +++ b/icons/themed/BIM_Report.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_ResetCloneColors.svg b/icons/themed/BIM_ResetCloneColors.svg new file mode 100644 index 0000000000..efd7f449e5 --- /dev/null +++ b/icons/themed/BIM_ResetCloneColors.svg @@ -0,0 +1,722 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Window_Tree + 2011-12-06 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Rewire.svg b/icons/themed/BIM_Rewire.svg new file mode 100644 index 0000000000..202d8dcab6 --- /dev/null +++ b/icons/themed/BIM_Rewire.svg @@ -0,0 +1,348 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Wire.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dots + dot + circle + circles + line + lines + + + Four scattered dots or circles joined by a line + + + + diff --git a/icons/themed/BIM_Slab.svg b/icons/themed/BIM_Slab.svg new file mode 100644 index 0000000000..2186061793 --- /dev/null +++ b/icons/themed/BIM_Slab.svg @@ -0,0 +1,434 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/BIM_TogglePanels.svg b/icons/themed/BIM_TogglePanels.svg new file mode 100644 index 0000000000..02bee597c1 --- /dev/null +++ b/icons/themed/BIM_TogglePanels.svg @@ -0,0 +1,82 @@ + + + + + Terminal + + + + image/svg+xml + + Terminal + + + terminal + emulator + term + command line + + + FreeCAD/src/Mod/BIM/Resources/icons/BIM_TogglePanels.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Trash.svg b/icons/themed/BIM_Trash.svg new file mode 100644 index 0000000000..71ac8748c4 --- /dev/null +++ b/icons/themed/BIM_Trash.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Tutorial.svg b/icons/themed/BIM_Tutorial.svg new file mode 100644 index 0000000000..5ed50c397f --- /dev/null +++ b/icons/themed/BIM_Tutorial.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Box + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/BIM_Unclone.svg b/icons/themed/BIM_Unclone.svg new file mode 100644 index 0000000000..079107f156 --- /dev/null +++ b/icons/themed/BIM_Unclone.svg @@ -0,0 +1,504 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Views.svg b/icons/themed/BIM_Views.svg new file mode 100644 index 0000000000..e629aff82f --- /dev/null +++ b/icons/themed/BIM_Views.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/BIM/Resources/icons/BIM_Views.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + pages + stack + + + + + + diff --git a/icons/themed/BIM_WPView.svg b/icons/themed/BIM_WPView.svg new file mode 100644 index 0000000000..84dcba510e --- /dev/null +++ b/icons/themed/BIM_WPView.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Tue Jun 10 10:21:01 2014 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_VisGroup.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + page + pages + rectangles + stack + + + Three pages or rectangles stacked on top of each other + + + + diff --git a/icons/themed/BIM_Welcome.svg b/icons/themed/BIM_Welcome.svg new file mode 100644 index 0000000000..4dc044650c --- /dev/null +++ b/icons/themed/BIM_Welcome.svg @@ -0,0 +1,236 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Box + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/BIM_Windows.svg b/icons/themed/BIM_Windows.svg new file mode 100644 index 0000000000..33976d472e --- /dev/null +++ b/icons/themed/BIM_Windows.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAMWorkbench.svg b/icons/themed/CAMWorkbench.svg new file mode 100644 index 0000000000..6fcaa654b1 --- /dev/null +++ b/icons/themed/CAMWorkbench.svg @@ -0,0 +1,435 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + PathWorkbench + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/PathWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_3DPocket.svg b/icons/themed/CAM_3DPocket.svg new file mode 100644 index 0000000000..a71109e0f9 --- /dev/null +++ b/icons/themed/CAM_3DPocket.svg @@ -0,0 +1,269 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_3DSurface + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_3DSurface.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_3DSurface.svg b/icons/themed/CAM_3DSurface.svg new file mode 100644 index 0000000000..d44fcdac0b --- /dev/null +++ b/icons/themed/CAM_3DSurface.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_3DSurface + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_3DSurface.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Adaptive.svg b/icons/themed/CAM_Adaptive.svg new file mode 100644 index 0000000000..f700e615ed --- /dev/null +++ b/icons/themed/CAM_Adaptive.svg @@ -0,0 +1,636 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Adaptive + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + A + + diff --git a/icons/themed/CAM_Area.svg b/icons/themed/CAM_Area.svg new file mode 100644 index 0000000000..652f7d818c --- /dev/null +++ b/icons/themed/CAM_Area.svg @@ -0,0 +1,648 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Area + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Area_View.svg b/icons/themed/CAM_Area_View.svg new file mode 100644 index 0000000000..3bea955bf3 --- /dev/null +++ b/icons/themed/CAM_Area_View.svg @@ -0,0 +1,657 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Area_View + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Area_Workplane.svg b/icons/themed/CAM_Area_Workplane.svg new file mode 100644 index 0000000000..92cc6548a9 --- /dev/null +++ b/icons/themed/CAM_Area_Workplane.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Area_Workplane + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Array.svg b/icons/themed/CAM_Array.svg new file mode 100644 index 0000000000..fc1b6000e9 --- /dev/null +++ b/icons/themed/CAM_Array.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Array + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Array.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_BFastForward.svg b/icons/themed/CAM_BFastForward.svg new file mode 100644 index 0000000000..d582166447 --- /dev/null +++ b/icons/themed/CAM_BFastForward.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/CAM_BPause.svg b/icons/themed/CAM_BPause.svg new file mode 100644 index 0000000000..3f4de2e298 --- /dev/null +++ b/icons/themed/CAM_BPause.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/CAM_BPlay.svg b/icons/themed/CAM_BPlay.svg new file mode 100644 index 0000000000..d81f276f1c --- /dev/null +++ b/icons/themed/CAM_BPlay.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/CAM_BStep.svg b/icons/themed/CAM_BStep.svg new file mode 100644 index 0000000000..1a312cbe47 --- /dev/null +++ b/icons/themed/CAM_BStep.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/CAM_BStop.svg b/icons/themed/CAM_BStop.svg new file mode 100644 index 0000000000..157b1bfc71 --- /dev/null +++ b/icons/themed/CAM_BStop.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/CAM_BaseGeometry.svg b/icons/themed/CAM_BaseGeometry.svg new file mode 100644 index 0000000000..1cb48279c2 --- /dev/null +++ b/icons/themed/CAM_BaseGeometry.svg @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_BaseGeometry + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_BaseGeometry.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/CAM_Camotics.svg b/icons/themed/CAM_Camotics.svg new file mode 100644 index 0000000000..5c20cce4e4 --- /dev/null +++ b/icons/themed/CAM_Camotics.svg @@ -0,0 +1,644 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Camotics + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Camotics.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + C + + + + diff --git a/icons/themed/CAM_Comment.svg b/icons/themed/CAM_Comment.svg new file mode 100644 index 0000000000..62ade39d9a --- /dev/null +++ b/icons/themed/CAM_Comment.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Comment + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Comment.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Compound.svg b/icons/themed/CAM_Compound.svg new file mode 100644 index 0000000000..2d5087aea4 --- /dev/null +++ b/icons/themed/CAM_Compound.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Compound + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Compound.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Copy.svg b/icons/themed/CAM_Copy.svg new file mode 100644 index 0000000000..909c9c9665 --- /dev/null +++ b/icons/themed/CAM_Copy.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Copy + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Copy.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Custom.svg b/icons/themed/CAM_Custom.svg new file mode 100644 index 0000000000..5b2df2a59e --- /dev/null +++ b/icons/themed/CAM_Custom.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Custom + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Custom.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Datums.svg b/icons/themed/CAM_Datums.svg new file mode 100644 index 0000000000..ec27856bef --- /dev/null +++ b/icons/themed/CAM_Datums.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Datums + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Datums.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Deburr.svg b/icons/themed/CAM_Deburr.svg new file mode 100644 index 0000000000..e6f578d24e --- /dev/null +++ b/icons/themed/CAM_Deburr.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Deburr + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Deburr.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Depths.svg b/icons/themed/CAM_Depths.svg new file mode 100644 index 0000000000..03cbbf4691 --- /dev/null +++ b/icons/themed/CAM_Depths.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Depths + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Depths.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Dressup.svg b/icons/themed/CAM_Dressup.svg new file mode 100644 index 0000000000..ac53c9febf --- /dev/null +++ b/icons/themed/CAM_Dressup.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Dressup + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Dressup.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Drilling.svg b/icons/themed/CAM_Drilling.svg new file mode 100644 index 0000000000..640c8de343 --- /dev/null +++ b/icons/themed/CAM_Drilling.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Drilling + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Drilling.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Engrave.svg b/icons/themed/CAM_Engrave.svg new file mode 100644 index 0000000000..b12b59e082 --- /dev/null +++ b/icons/themed/CAM_Engrave.svg @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Engrave + 2016-02-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Engrave.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ExportTemplate.svg b/icons/themed/CAM_ExportTemplate.svg new file mode 100644 index 0000000000..834cc80ab8 --- /dev/null +++ b/icons/themed/CAM_ExportTemplate.svg @@ -0,0 +1,1192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ExportTemplate + 2016-06-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ExportTemplate.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Face.svg b/icons/themed/CAM_Face.svg new file mode 100644 index 0000000000..0570308319 --- /dev/null +++ b/icons/themed/CAM_Face.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Face + 2016-11-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_FacePocket.svg b/icons/themed/CAM_FacePocket.svg new file mode 100644 index 0000000000..d852d2c6c7 --- /dev/null +++ b/icons/themed/CAM_FacePocket.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_FacePocket + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_FaceProfile.svg b/icons/themed/CAM_FaceProfile.svg new file mode 100644 index 0000000000..47843a92a7 --- /dev/null +++ b/icons/themed/CAM_FaceProfile.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_FaceProfile + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Heights.svg b/icons/themed/CAM_Heights.svg new file mode 100644 index 0000000000..db7797b41b --- /dev/null +++ b/icons/themed/CAM_Heights.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Heights + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Heights.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Helix.svg b/icons/themed/CAM_Helix.svg new file mode 100644 index 0000000000..16aade7987 --- /dev/null +++ b/icons/themed/CAM_Helix.svg @@ -0,0 +1,1524 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Lorenz Hüdepohl] + + + CAM_Helix + 2016-05-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Helix.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_InactiveOp.svg b/icons/themed/CAM_InactiveOp.svg new file mode 100644 index 0000000000..4918c0f462 --- /dev/null +++ b/icons/themed/CAM_InactiveOp.svg @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Snap_Extension.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Three dots or circles in a horizontal sequence similar to an ellipsis + + + circle + circles + dot + dots + ellipsis + + + CAM_OperationA + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/CAM_Inspect.svg b/icons/themed/CAM_Inspect.svg new file mode 100644 index 0000000000..bf12ad57e0 --- /dev/null +++ b/icons/themed/CAM_Inspect.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Inspect + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Inspect.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Job.svg b/icons/themed/CAM_Job.svg new file mode 100644 index 0000000000..8833aba2bc --- /dev/null +++ b/icons/themed/CAM_Job.svg @@ -0,0 +1,1248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Job + 2016-06-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Job.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_LengthOffset.svg b/icons/themed/CAM_LengthOffset.svg new file mode 100644 index 0000000000..27ba091394 --- /dev/null +++ b/icons/themed/CAM_LengthOffset.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_LengthOffset + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_LengthOffset.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Machine.svg b/icons/themed/CAM_Machine.svg new file mode 100644 index 0000000000..aa550dcbb5 --- /dev/null +++ b/icons/themed/CAM_Machine.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Machine + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Machine.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_MachineLathe.svg b/icons/themed/CAM_MachineLathe.svg new file mode 100644 index 0000000000..9f624f4722 --- /dev/null +++ b/icons/themed/CAM_MachineLathe.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_MachineLathe + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_MachineLathe.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_MachineMill.svg b/icons/themed/CAM_MachineMill.svg new file mode 100644 index 0000000000..c82fd197ed --- /dev/null +++ b/icons/themed/CAM_MachineMill.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_MachineMill + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_MachineMill.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Machine_test1.svg b/icons/themed/CAM_Machine_test1.svg new file mode 100644 index 0000000000..f2e8330a18 --- /dev/null +++ b/icons/themed/CAM_Machine_test1.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Machine_test1 + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Machine_test1.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_OpActive.svg b/icons/themed/CAM_OpActive.svg new file mode 100644 index 0000000000..5ac9c66527 --- /dev/null +++ b/icons/themed/CAM_OpActive.svg @@ -0,0 +1,495 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Snap_Extension.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Three dots or circles in a horizontal sequence similar to an ellipsis + + + circle + circles + dot + dots + ellipsis + + + CAM_OperationA + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/CAM_OpCopy.svg b/icons/themed/CAM_OpCopy.svg new file mode 100644 index 0000000000..101d923961 --- /dev/null +++ b/icons/themed/CAM_OpCopy.svg @@ -0,0 +1,704 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_OpCopy + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_OperationA.svg b/icons/themed/CAM_OperationA.svg new file mode 100644 index 0000000000..8ab8272b0b --- /dev/null +++ b/icons/themed/CAM_OperationA.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Snap_Extension.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Three dots or circles in a horizontal sequence similar to an ellipsis + + + circle + circles + dot + dots + ellipsis + + + CAM_OperationA + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/CAM_OperationB.svg b/icons/themed/CAM_OperationB.svg new file mode 100644 index 0000000000..4400177bd3 --- /dev/null +++ b/icons/themed/CAM_OperationB.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_OperationB + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_OperationB.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Pocket.svg b/icons/themed/CAM_Pocket.svg new file mode 100644 index 0000000000..1afba5d168 --- /dev/null +++ b/icons/themed/CAM_Pocket.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Pocket + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Pocket.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Post.svg b/icons/themed/CAM_Post.svg new file mode 100644 index 0000000000..c3f9c0b253 --- /dev/null +++ b/icons/themed/CAM_Post.svg @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Post + 2016-06-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Post.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_PostSelected.svg b/icons/themed/CAM_PostSelected.svg new file mode 100644 index 0000000000..9366c8aede --- /dev/null +++ b/icons/themed/CAM_PostSelected.svg @@ -0,0 +1,1195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + CAM_Post + 2016-06-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Post.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Probe.svg b/icons/themed/CAM_Probe.svg new file mode 100644 index 0000000000..502aaee56a --- /dev/null +++ b/icons/themed/CAM_Probe.svg @@ -0,0 +1,666 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Probe + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Probe.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Profile.svg b/icons/themed/CAM_Profile.svg new file mode 100644 index 0000000000..86e88f64e3 --- /dev/null +++ b/icons/themed/CAM_Profile.svg @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Profile + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Profile.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Profile_Edges.svg b/icons/themed/CAM_Profile_Edges.svg new file mode 100644 index 0000000000..4ef7913565 --- /dev/null +++ b/icons/themed/CAM_Profile_Edges.svg @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Profile_Edges_Edges + 2016-10-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Profile_Edges_Edges.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Profile_Face.svg b/icons/themed/CAM_Profile_Face.svg new file mode 100644 index 0000000000..2caf2fe14e --- /dev/null +++ b/icons/themed/CAM_Profile_Face.svg @@ -0,0 +1,193 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Profile_Face_Face + 2016-10-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Profile_Face_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Sanity.svg b/icons/themed/CAM_Sanity.svg new file mode 100644 index 0000000000..c994192f25 --- /dev/null +++ b/icons/themed/CAM_Sanity.svg @@ -0,0 +1,166 @@ + + + + + + + image/svg+xml + + + CAM_Sanity + 2016-05-15https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Sanity.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_SelectLoop.svg b/icons/themed/CAM_SelectLoop.svg new file mode 100644 index 0000000000..84d44feb05 --- /dev/null +++ b/icons/themed/CAM_SelectLoop.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_SelectLoop + 2016-10-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_SelectLoop.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_SetupSheet.svg b/icons/themed/CAM_SetupSheet.svg new file mode 100644 index 0000000000..3678498ea8 --- /dev/null +++ b/icons/themed/CAM_SetupSheet.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Eivind Kvedalen] + + + Spreadsheet + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/Spreadsheet.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Shape.svg b/icons/themed/CAM_Shape.svg new file mode 100644 index 0000000000..2119f29e9f --- /dev/null +++ b/icons/themed/CAM_Shape.svg @@ -0,0 +1,164 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Shape + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Shape.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ShapeTC.svg b/icons/themed/CAM_ShapeTC.svg new file mode 100644 index 0000000000..a4db803a36 --- /dev/null +++ b/icons/themed/CAM_ShapeTC.svg @@ -0,0 +1,721 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + CAM_Shape + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Shape.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_SimpleCopy.svg b/icons/themed/CAM_SimpleCopy.svg new file mode 100644 index 0000000000..8f019745ec --- /dev/null +++ b/icons/themed/CAM_SimpleCopy.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_SimpleCopy + 2016-01-23 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_SimpleCopy.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Simulator.svg b/icons/themed/CAM_Simulator.svg new file mode 100644 index 0000000000..32ae707d09 --- /dev/null +++ b/icons/themed/CAM_Simulator.svg @@ -0,0 +1,1459 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Machine + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Machine.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_SimulatorGL.svg b/icons/themed/CAM_SimulatorGL.svg new file mode 100644 index 0000000000..f52ea3f451 --- /dev/null +++ b/icons/themed/CAM_SimulatorGL.svg @@ -0,0 +1,928 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + CAM_Machine + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Machine.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Slot.svg b/icons/themed/CAM_Slot.svg new file mode 100644 index 0000000000..9d1092190d --- /dev/null +++ b/icons/themed/CAM_Slot.svg @@ -0,0 +1,754 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Slot + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Slot.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Speed.svg b/icons/themed/CAM_Speed.svg new file mode 100644 index 0000000000..e56ca70e76 --- /dev/null +++ b/icons/themed/CAM_Speed.svg @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Speed + 2016-05-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Speed.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_StartPoint.svg b/icons/themed/CAM_StartPoint.svg new file mode 100644 index 0000000000..4c6971212e --- /dev/null +++ b/icons/themed/CAM_StartPoint.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Stop.svg b/icons/themed/CAM_Stop.svg new file mode 100644 index 0000000000..a18611927a --- /dev/null +++ b/icons/themed/CAM_Stop.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Stop + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Stop.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Tags.svg b/icons/themed/CAM_Tags.svg new file mode 100644 index 0000000000..247acac686 --- /dev/null +++ b/icons/themed/CAM_Tags.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Tags + 2016-02-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Tags.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Tapping.svg b/icons/themed/CAM_Tapping.svg new file mode 100644 index 0000000000..ba82e8a031 --- /dev/null +++ b/icons/themed/CAM_Tapping.svg @@ -0,0 +1,688 @@ + + + + + CAM_Tapping.svg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + CAM_Tapping.svg + Path_Drilling + 2015-07-04 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/CAM_Tapping.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + [luvtofish] Dan Henderson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ThreadMilling.svg b/icons/themed/CAM_ThreadMilling.svg new file mode 100644 index 0000000000..61e6f078bb --- /dev/null +++ b/icons/themed/CAM_ThreadMilling.svg @@ -0,0 +1,1616 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Lorenz Hüdepohl] + + + Path-Helix + 2016-05-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/Path-Helix.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolBit.svg b/icons/themed/CAM_ToolBit.svg new file mode 100644 index 0000000000..f5b42f1554 --- /dev/null +++ b/icons/themed/CAM_ToolBit.svg @@ -0,0 +1,933 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ToolTable + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ToolTable.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolChange.svg b/icons/themed/CAM_ToolChange.svg new file mode 100644 index 0000000000..add077780a --- /dev/null +++ b/icons/themed/CAM_ToolChange.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ToolChange + 2016-01-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ToolChange.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolController.svg b/icons/themed/CAM_ToolController.svg new file mode 100644 index 0000000000..8eb7b45cbc --- /dev/null +++ b/icons/themed/CAM_ToolController.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_LoadTool + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_LoadTool.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolDuplicate.svg b/icons/themed/CAM_ToolDuplicate.svg new file mode 100644 index 0000000000..c7f0a72538 --- /dev/null +++ b/icons/themed/CAM_ToolDuplicate.svg @@ -0,0 +1,856 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ToolChange + 2016-01-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ToolChange.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolTable.svg b/icons/themed/CAM_ToolTable.svg new file mode 100644 index 0000000000..e922a904ec --- /dev/null +++ b/icons/themed/CAM_ToolTable.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ToolTable + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ToolTable.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolTableAdd.svg b/icons/themed/CAM_ToolTableAdd.svg new file mode 100644 index 0000000000..2bddcc2a1f --- /dev/null +++ b/icons/themed/CAM_ToolTableAdd.svg @@ -0,0 +1,1084 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ToolTable + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ToolTable.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_ToolTableRemove.svg b/icons/themed/CAM_ToolTableRemove.svg new file mode 100644 index 0000000000..bc2f1fa778 --- /dev/null +++ b/icons/themed/CAM_ToolTableRemove.svg @@ -0,0 +1,1084 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_ToolTable + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_ToolTable.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Toolpath.svg b/icons/themed/CAM_Toolpath.svg new file mode 100644 index 0000000000..639b57e488 --- /dev/null +++ b/icons/themed/CAM_Toolpath.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Toolpath + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Toolpath.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Vcarve.svg b/icons/themed/CAM_Vcarve.svg new file mode 100644 index 0000000000..e9270249c1 --- /dev/null +++ b/icons/themed/CAM_Vcarve.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + CAM_Vcarve + 2016-02-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Vcarve.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CAM_Waterline.svg b/icons/themed/CAM_Waterline.svg new file mode 100644 index 0000000000..6b1306c3ab --- /dev/null +++ b/icons/themed/CAM_Waterline.svg @@ -0,0 +1,281 @@ + + + CAM_Waterline + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + CAM_Waterline + CAM_Waterline + 2019-05-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/CAM_Waterline.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [russ4262] Russell Johnson + + + + + [russ4262] Russell Johnson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/CloudWorkbench.svg b/icons/themed/CloudWorkbench.svg new file mode 100644 index 0000000000..8c4abc2364 --- /dev/null +++ b/icons/themed/CloudWorkbench.svg @@ -0,0 +1,17 @@ + + + + +Created by Jean-Marie Verdun using potrace 1.15, written by Peter Selinger 2001-2017 + + + + + diff --git a/icons/themed/Constraint_Block.svg b/icons/themed/Constraint_Block.svg new file mode 100644 index 0000000000..a5c0ec730b --- /dev/null +++ b/icons/themed/Constraint_Block.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Coincident.svg b/icons/themed/Constraint_Coincident.svg new file mode 100644 index 0000000000..c9e62ae29b --- /dev/null +++ b/icons/themed/Constraint_Coincident.svg @@ -0,0 +1,297 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Concentric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Concentric.svg b/icons/themed/Constraint_Concentric.svg new file mode 100644 index 0000000000..14d9acb865 --- /dev/null +++ b/icons/themed/Constraint_Concentric.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Concentric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Diameter.svg b/icons/themed/Constraint_Diameter.svg new file mode 100644 index 0000000000..cea641f0a9 --- /dev/null +++ b/icons/themed/Constraint_Diameter.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Diameter_Driven.svg b/icons/themed/Constraint_Diameter_Driven.svg new file mode 100644 index 0000000000..1bae0ca1fe --- /dev/null +++ b/icons/themed/Constraint_Diameter_Driven.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Dimension.svg b/icons/themed/Constraint_Dimension.svg new file mode 100644 index 0000000000..fca2325912 --- /dev/null +++ b/icons/themed/Constraint_Dimension.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Dimension_Driven.svg b/icons/themed/Constraint_Dimension_Driven.svg new file mode 100644 index 0000000000..ca919f4889 --- /dev/null +++ b/icons/themed/Constraint_Dimension_Driven.svg @@ -0,0 +1,353 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Ellipse_Axis_Angle.svg b/icons/themed/Constraint_Ellipse_Axis_Angle.svg new file mode 100644 index 0000000000..344ee1c0ff --- /dev/null +++ b/icons/themed/Constraint_Ellipse_Axis_Angle.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Ellipse_Axis_Angle.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Ellipse_Major_Radius.svg b/icons/themed/Constraint_Ellipse_Major_Radius.svg new file mode 100644 index 0000000000..19bd2ce646 --- /dev/null +++ b/icons/themed/Constraint_Ellipse_Major_Radius.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Ellipse_Major_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Ellipse_Minor_Radius.svg b/icons/themed/Constraint_Ellipse_Minor_Radius.svg new file mode 100644 index 0000000000..9fd4f48b7b --- /dev/null +++ b/icons/themed/Constraint_Ellipse_Minor_Radius.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Ellipse_Minor_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Ellipse_Radii.svg b/icons/themed/Constraint_Ellipse_Radii.svg new file mode 100644 index 0000000000..f73c05323c --- /dev/null +++ b/icons/themed/Constraint_Ellipse_Radii.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Ellipse_Radii.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_EqualLength.svg b/icons/themed/Constraint_EqualLength.svg new file mode 100644 index 0000000000..e8880c8425 --- /dev/null +++ b/icons/themed/Constraint_EqualLength.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_EqualLength.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Constraint_ExternalAngle.svg b/icons/themed/Constraint_ExternalAngle.svg new file mode 100644 index 0000000000..203b8d0111 --- /dev/null +++ b/icons/themed/Constraint_ExternalAngle.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_ExternalAngle.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_HorVer.svg b/icons/themed/Constraint_HorVer.svg new file mode 100644 index 0000000000..c9d07e09b1 --- /dev/null +++ b/icons/themed/Constraint_HorVer.svg @@ -0,0 +1,227 @@ + +image/svg+xml[wmayer]2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Horizontal.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Constraint_Horizontal.svg b/icons/themed/Constraint_Horizontal.svg new file mode 100644 index 0000000000..888d2972cd --- /dev/null +++ b/icons/themed/Constraint_Horizontal.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Horizontal.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/Constraint_HorizontalDistance.svg b/icons/themed/Constraint_HorizontalDistance.svg new file mode 100644 index 0000000000..9b01996003 --- /dev/null +++ b/icons/themed/Constraint_HorizontalDistance.svg @@ -0,0 +1,192 @@ + + + +image/svg+xml[wmayer]2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_HorizontalDistance.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Constraint_HorizontalDistance_Driven.svg b/icons/themed/Constraint_HorizontalDistance_Driven.svg new file mode 100644 index 0000000000..cd6501973a --- /dev/null +++ b/icons/themed/Constraint_HorizontalDistance_Driven.svg @@ -0,0 +1,192 @@ + + + +image/svg+xml[wmayer]2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_HorizontalDistance.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Constraint_InternalAlignment.svg b/icons/themed/Constraint_InternalAlignment.svg new file mode 100644 index 0000000000..b544c13449 --- /dev/null +++ b/icons/themed/Constraint_InternalAlignment.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAlignment.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_InternalAlignment_Ellipse_Focus1.svg b/icons/themed/Constraint_InternalAlignment_Ellipse_Focus1.svg new file mode 100644 index 0000000000..abeef19e5a --- /dev/null +++ b/icons/themed/Constraint_InternalAlignment_Ellipse_Focus1.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAlignment_Ellipse_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_InternalAlignment_Ellipse_Focus2.svg b/icons/themed/Constraint_InternalAlignment_Ellipse_Focus2.svg new file mode 100644 index 0000000000..fc5e7be2b3 --- /dev/null +++ b/icons/themed/Constraint_InternalAlignment_Ellipse_Focus2.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAlignment_Ellipse_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_InternalAlignment_Ellipse_MajorAxis.svg b/icons/themed/Constraint_InternalAlignment_Ellipse_MajorAxis.svg new file mode 100644 index 0000000000..0930c87bd6 --- /dev/null +++ b/icons/themed/Constraint_InternalAlignment_Ellipse_MajorAxis.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAlignment_Ellipse_MajorAxis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_InternalAlignment_Ellipse_MinorAxis.svg b/icons/themed/Constraint_InternalAlignment_Ellipse_MinorAxis.svg new file mode 100644 index 0000000000..acf01e7376 --- /dev/null +++ b/icons/themed/Constraint_InternalAlignment_Ellipse_MinorAxis.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2014-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAlignment_Ellipse_MinorAxis.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_InternalAngle.svg b/icons/themed/Constraint_InternalAngle.svg new file mode 100644 index 0000000000..1385b10307 --- /dev/null +++ b/icons/themed/Constraint_InternalAngle.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAngle.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_InternalAngle_Driven.svg b/icons/themed/Constraint_InternalAngle_Driven.svg new file mode 100644 index 0000000000..a739885d81 --- /dev/null +++ b/icons/themed/Constraint_InternalAngle_Driven.svg @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_InternalAngle_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Length.svg b/icons/themed/Constraint_Length.svg new file mode 100644 index 0000000000..710ea4bbf5 --- /dev/null +++ b/icons/themed/Constraint_Length.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Length.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Length_Driven.svg b/icons/themed/Constraint_Length_Driven.svg new file mode 100644 index 0000000000..d94392ab9a --- /dev/null +++ b/icons/themed/Constraint_Length_Driven.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Length_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Lock.svg b/icons/themed/Constraint_Lock.svg new file mode 100644 index 0000000000..3fcb63a208 --- /dev/null +++ b/icons/themed/Constraint_Lock.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainLock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Lock_Driven.svg b/icons/themed/Constraint_Lock_Driven.svg new file mode 100644 index 0000000000..1824418fc8 --- /dev/null +++ b/icons/themed/Constraint_Lock_Driven.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainLock_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Parallel.svg b/icons/themed/Constraint_Parallel.svg new file mode 100644 index 0000000000..f85278786c --- /dev/null +++ b/icons/themed/Constraint_Parallel.svg @@ -0,0 +1,250 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Parallel.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Perpendicular.svg b/icons/themed/Constraint_Perpendicular.svg new file mode 100644 index 0000000000..ac7defed12 --- /dev/null +++ b/icons/themed/Constraint_Perpendicular.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Perpendicular.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/Constraint_PointOnEnd.svg b/icons/themed/Constraint_PointOnEnd.svg new file mode 100644 index 0000000000..97c008d5c2 --- /dev/null +++ b/icons/themed/Constraint_PointOnEnd.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_PointOnEnd.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_PointOnMidPoint.svg b/icons/themed/Constraint_PointOnMidPoint.svg new file mode 100644 index 0000000000..dfd6df9b51 --- /dev/null +++ b/icons/themed/Constraint_PointOnMidPoint.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_PointOnMidPoint.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_PointOnObject.svg b/icons/themed/Constraint_PointOnObject.svg new file mode 100644 index 0000000000..53beda8d13 --- /dev/null +++ b/icons/themed/Constraint_PointOnObject.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_PointOnObject.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_PointOnPoint.svg b/icons/themed/Constraint_PointOnPoint.svg new file mode 100644 index 0000000000..b4b668e131 --- /dev/null +++ b/icons/themed/Constraint_PointOnPoint.svg @@ -0,0 +1,492 @@ + + + + + + + + + + Constraint PointOnPoint + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Constraint PointOnPoint + + + [bitacovir] + + + Sketcher_Symmetry + 2020-01-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, [Abdullah Tahiri] + + + New version of Constraint PointOnPoint icon, based on Abdullah Tahiri's work + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_PointOnStart.svg b/icons/themed/Constraint_PointOnStart.svg new file mode 100644 index 0000000000..b2b5cdf932 --- /dev/null +++ b/icons/themed/Constraint_PointOnStart.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_PointOnStart.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_PointToObject.svg b/icons/themed/Constraint_PointToObject.svg new file mode 100644 index 0000000000..b32004db4c --- /dev/null +++ b/icons/themed/Constraint_PointToObject.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_PointToObject.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Radiam.svg b/icons/themed/Constraint_Radiam.svg new file mode 100644 index 0000000000..eb3d8bc54d --- /dev/null +++ b/icons/themed/Constraint_Radiam.svg @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Constraint_Radius + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Radiam_Driven.svg b/icons/themed/Constraint_Radiam_Driven.svg new file mode 100644 index 0000000000..5d80003554 --- /dev/null +++ b/icons/themed/Constraint_Radiam_Driven.svg @@ -0,0 +1,291 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Constraint_Radius + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Radius.svg b/icons/themed/Constraint_Radius.svg new file mode 100644 index 0000000000..ae19d38618 --- /dev/null +++ b/icons/themed/Constraint_Radius.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Radius_Driven.svg b/icons/themed/Constraint_Radius_Driven.svg new file mode 100644 index 0000000000..7009746ad3 --- /dev/null +++ b/icons/themed/Constraint_Radius_Driven.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Radius_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_SnellsLaw.svg b/icons/themed/Constraint_SnellsLaw.svg new file mode 100644 index 0000000000..4d8bac310f --- /dev/null +++ b/icons/themed/Constraint_SnellsLaw.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [DeepSOIC] + + + 2014-12-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_SnellsLaw.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_SnellsLaw_Driven.svg b/icons/themed/Constraint_SnellsLaw_Driven.svg new file mode 100644 index 0000000000..5905239dfa --- /dev/null +++ b/icons/themed/Constraint_SnellsLaw_Driven.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_SnellsLaw_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Symmetric.svg b/icons/themed/Constraint_Symmetric.svg new file mode 100644 index 0000000000..6c52ca4c11 --- /dev/null +++ b/icons/themed/Constraint_Symmetric.svg @@ -0,0 +1,212 @@ + + + +image/svg+xml[wmayer]2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Symmetric.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Constraint_Tangent.svg b/icons/themed/Constraint_Tangent.svg new file mode 100644 index 0000000000..63a6dfe2a6 --- /dev/null +++ b/icons/themed/Constraint_Tangent.svg @@ -0,0 +1,211 @@ + + + +image/svg+xml[wmayer]2011-10-10https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Tangent.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Constraint_TangentToEnd.svg b/icons/themed/Constraint_TangentToEnd.svg new file mode 100644 index 0000000000..7be6a43627 --- /dev/null +++ b/icons/themed/Constraint_TangentToEnd.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_TangentToEnd.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_TangentToStart.svg b/icons/themed/Constraint_TangentToStart.svg new file mode 100644 index 0000000000..84599e4c93 --- /dev/null +++ b/icons/themed/Constraint_TangentToStart.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_TangentToStart.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_Vertical.svg b/icons/themed/Constraint_Vertical.svg new file mode 100644 index 0000000000..3422e699a4 --- /dev/null +++ b/icons/themed/Constraint_Vertical.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_Vertical.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + diff --git a/icons/themed/Constraint_VerticalDistance.svg b/icons/themed/Constraint_VerticalDistance.svg new file mode 100644 index 0000000000..b03b1efad4 --- /dev/null +++ b/icons/themed/Constraint_VerticalDistance.svg @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_VerticalDistance.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Constraint_VerticalDistance_Driven.svg b/icons/themed/Constraint_VerticalDistance_Driven.svg new file mode 100644 index 0000000000..9bab0f8f83 --- /dev/null +++ b/icons/themed/Constraint_VerticalDistance_Driven.svg @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Constraint_VerticalDistance_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Document.svg b/icons/themed/Document.svg new file mode 100644 index 0000000000..e97cf1cd41 --- /dev/null +++ b/icons/themed/Document.svg @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/DraftWorkbench.svg b/icons/themed/DraftWorkbench.svg new file mode 100644 index 0000000000..fac68d5eb8 --- /dev/null +++ b/icons/themed/DraftWorkbench.svg @@ -0,0 +1,287 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Fri Feb 26 23:17:43 2016 +0100 + + + [triplus] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/DraftWorkbench.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + ruler + drafting board + right angle ruler + + + A right angle ruler resting on a ruler on a drafting board + + + + diff --git a/icons/themed/Draft_2DShapeView.svg b/icons/themed/Draft_2DShapeView.svg new file mode 100644 index 0000000000..f5ead06e63 --- /dev/null +++ b/icons/themed/Draft_2DShapeView.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_2DShapeView.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + box + plane + rectangle + + + A box floating above a projection of its lower face + + + + diff --git a/icons/themed/Draft_AddConstruction.svg b/icons/themed/Draft_AddConstruction.svg new file mode 100644 index 0000000000..a961f2baea --- /dev/null +++ b/icons/themed/Draft_AddConstruction.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AddConstruction.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + trowel + tool + plus sign + + + A trowel with an arrow on top of it. + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_AddNamedGroup.svg b/icons/themed/Draft_AddNamedGroup.svg new file mode 100644 index 0000000000..aa5e7eb13d --- /dev/null +++ b/icons/themed/Draft_AddNamedGroup.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AddNamedGroup.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + arrow + page + shapes + + + A folder with a plus sign on its bottom right corner. + + + + + + + + diff --git a/icons/themed/Draft_AddPoint.svg b/icons/themed/Draft_AddPoint.svg new file mode 100644 index 0000000000..b7f4b62cb8 --- /dev/null +++ b/icons/themed/Draft_AddPoint.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AddPoint.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + plus + add + cross + dot + line + + + A plus sign hovering above a line with a dot at its midpoint + + + + diff --git a/icons/themed/Draft_AddToGroup.svg b/icons/themed/Draft_AddToGroup.svg new file mode 100644 index 0000000000..e3738a15e9 --- /dev/null +++ b/icons/themed/Draft_AddToGroup.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AutoGroup_on.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + arrow + page + shapes + + + A folder with two arrows on top of it. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_AddToLayer.svg b/icons/themed/Draft_AddToLayer.svg new file mode 100644 index 0000000000..9ebd63732d --- /dev/null +++ b/icons/themed/Draft_AddToLayer.svg @@ -0,0 +1,170 @@ + + + Draft_AddToLayer + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_AddToLayer + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AddToLayer.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + page + pages + rectangles + stack + + + A layer with two arrows on top of it. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Annotation_Style.svg b/icons/themed/Draft_Annotation_Style.svg new file mode 100644 index 0000000000..f729cb9a16 --- /dev/null +++ b/icons/themed/Draft_Annotation_Style.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Text.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + The capital letter A, slightly italicized + + + A + letter + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Apply.svg b/icons/themed/Draft_Apply.svg new file mode 100644 index 0000000000..7eeae01a64 --- /dev/null +++ b/icons/themed/Draft_Apply.svg @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Apply.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + rectangle + collection + + + A collection of multicolored rectangles in a larger rectangle with an arrow pointing outwards to the left + + + + diff --git a/icons/themed/Draft_Arc.svg b/icons/themed/Draft_Arc.svg new file mode 100644 index 0000000000..3a51664cc8 --- /dev/null +++ b/icons/themed/Draft_Arc.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Arc.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + point + dot + arc + curve + line + + + An arc of 90° with a point at each end with a third point in the lower left where the centerpoint of the arc would be + + + + diff --git a/icons/themed/Draft_Arc_3Points.svg b/icons/themed/Draft_Arc_3Points.svg new file mode 100644 index 0000000000..5a1c7b6988 --- /dev/null +++ b/icons/themed/Draft_Arc_3Points.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Arc.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + point + dot + arc + curve + line + + + An arc of 90° with a point at each end with a third point in the lower left where the centerpoint of the arc would be + + + + diff --git a/icons/themed/Draft_Array.svg b/icons/themed/Draft_Array.svg new file mode 100644 index 0000000000..6b3e6581dd --- /dev/null +++ b/icons/themed/Draft_Array.svg @@ -0,0 +1,471 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + diff --git a/icons/themed/Draft_AutoGroup.svg b/icons/themed/Draft_AutoGroup.svg new file mode 100644 index 0000000000..203bf98bff --- /dev/null +++ b/icons/themed/Draft_AutoGroup.svg @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AutoGroup.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + page + shapes + + + An arrow pointing from left to right onto a page with shapes drawn on it + + + + diff --git a/icons/themed/Draft_AutoGroup_off.svg b/icons/themed/Draft_AutoGroup_off.svg new file mode 100644 index 0000000000..9bc9614489 --- /dev/null +++ b/icons/themed/Draft_AutoGroup_off.svg @@ -0,0 +1,391 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AutoGroup_off.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + page + shapes + + + An arrow pointing from left to right onto a page with shapes drawn on it + + + + diff --git a/icons/themed/Draft_AutoGroup_on.svg b/icons/themed/Draft_AutoGroup_on.svg new file mode 100644 index 0000000000..bacf2d6e43 --- /dev/null +++ b/icons/themed/Draft_AutoGroup_on.svg @@ -0,0 +1,366 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_AutoGroup_on.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + page + shapes + + + An arrow pointing from left to right onto a page with shapes drawn on it + + + + diff --git a/icons/themed/Draft_BSpline.svg b/icons/themed/Draft_BSpline.svg new file mode 100644 index 0000000000..73c87af6f6 --- /dev/null +++ b/icons/themed/Draft_BSpline.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_BSpline.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot + point + curve + line + + + A curved line in the shape of an upside-down U passing through three points + + + + diff --git a/icons/themed/Draft_BezCurve.svg b/icons/themed/Draft_BezCurve.svg new file mode 100644 index 0000000000..2f15a806c5 --- /dev/null +++ b/icons/themed/Draft_BezCurve.svg @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Fri Jan 17 12:22:46 2014 -0500 + + + [WandererFan] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_BezCurve.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + curve + line + dot + point + circle + square + + + A curved line in the shape of an upside down U with a point at each end that has a square shaped control point + + + + diff --git a/icons/themed/Draft_BezSharpNode.svg b/icons/themed/Draft_BezSharpNode.svg new file mode 100644 index 0000000000..6b846f717f --- /dev/null +++ b/icons/themed/Draft_BezSharpNode.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sun Feb 2 18:22:27 2014 +0100 + + + [Sebastian Hoogen] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_BezSharpNode.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + curved + line + dot + circle + control + + + An irregularly curved line passing through a dot with unequally spaced control points at an angle to each other + + + + diff --git a/icons/themed/Draft_BezSymNode.svg b/icons/themed/Draft_BezSymNode.svg new file mode 100644 index 0000000000..7005a1504e --- /dev/null +++ b/icons/themed/Draft_BezSymNode.svg @@ -0,0 +1,450 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Thu Jan 30 09:16:37 2014 -0500 + + + [WandererFan] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_BezSymNode.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot + circle + line + curved + control + + + A curved line passing through a dot with equally spaced control points + + + + diff --git a/icons/themed/Draft_BezTanNode.svg b/icons/themed/Draft_BezTanNode.svg new file mode 100644 index 0000000000..998346b5ad --- /dev/null +++ b/icons/themed/Draft_BezTanNode.svg @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Thu Jan 30 09:16:37 2014 -0500 + + + [WandererFan] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_BezTanNode.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + curve + line + control + + + A curved line passing through a point with unequally distant control points + + + + diff --git a/icons/themed/Draft_Circle.svg b/icons/themed/Draft_Circle.svg new file mode 100644 index 0000000000..b0500686fd --- /dev/null +++ b/icons/themed/Draft_Circle.svg @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Circle.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot + circle + + + A circle with a dot at its centerpoint and another on the rightermost point of its circumference + + + + diff --git a/icons/themed/Draft_CircularArray.svg b/icons/themed/Draft_CircularArray.svg new file mode 100644 index 0000000000..493c4cc9f1 --- /dev/null +++ b/icons/themed/Draft_CircularArray.svg @@ -0,0 +1,506 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + vocx + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + agryson, yorikvanhavre + + + Seven circles, in a circular array + + + circular + array + + + + + + diff --git a/icons/themed/Draft_CircularLinkArray.svg b/icons/themed/Draft_CircularLinkArray.svg new file mode 100644 index 0000000000..cc49d5a9c4 --- /dev/null +++ b/icons/themed/Draft_CircularLinkArray.svg @@ -0,0 +1,587 @@ + + + Draft_CircularLinkArray + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_CircularLinkArray + + Sat Dec 10 18:31:32 2011 +0000 + + + vocx + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_CircularLinkArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + agryson, yorikvanhavre + + + Seven circles, in a circular array, with a green arrow indicating that this array uses Link elements + + + circular + array + + + + + + + + + + diff --git a/icons/themed/Draft_Clone.svg b/icons/themed/Draft_Clone.svg new file mode 100644 index 0000000000..0f977609ed --- /dev/null +++ b/icons/themed/Draft_Clone.svg @@ -0,0 +1,297 @@ + + + + + + image/svg+xml + + + + + vocx + + + A cloned sheep + + + yorikvanhavre + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Construction.svg b/icons/themed/Draft_Construction.svg new file mode 100644 index 0000000000..a191f0e7ed --- /dev/null +++ b/icons/themed/Draft_Construction.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Construction.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + trowel + tool + + + A trowel + + + + + + + + + + diff --git a/icons/themed/Draft_CubicBezCurve.svg b/icons/themed/Draft_CubicBezCurve.svg new file mode 100644 index 0000000000..8e58d25f76 --- /dev/null +++ b/icons/themed/Draft_CubicBezCurve.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Fri Jan 17 12:22:46 2014 -0500 + + + [WandererFan] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_BezCurve.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [vocx] + + + + + curve + line + dot + point + circle + square + + + A curved line in the shape of an upside down U with a point at each end that has a square shaped control point, and a 3 in the middle + + + + + diff --git a/icons/themed/Draft_Cursor.svg b/icons/themed/Draft_Cursor.svg new file mode 100644 index 0000000000..bdcfd96b90 --- /dev/null +++ b/icons/themed/Draft_Cursor.svg @@ -0,0 +1,66 @@ + + + + + + + + + + image/svg+xml + + + + Sat Dec 17 15:36:02 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Cursor.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + crosshair + cross + plus + + + A white crosshair + + + + diff --git a/icons/themed/Draft_DelPoint.svg b/icons/themed/Draft_DelPoint.svg new file mode 100644 index 0000000000..d8420a38a0 --- /dev/null +++ b/icons/themed/Draft_DelPoint.svg @@ -0,0 +1,380 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_DelPoint.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + minus + line + dot + + + A minus sign floating above a line with a dot at its midpoint + + + + diff --git a/icons/themed/Draft_Dimension.svg b/icons/themed/Draft_Dimension.svg new file mode 100644 index 0000000000..152d5c9040 --- /dev/null +++ b/icons/themed/Draft_Dimension.svg @@ -0,0 +1,392 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Dimension.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + dot + number + + + A number floating above a line corresponding to the upper three sides of a rectangle with a dot at each endpoint and corner + + + + + + + + + diff --git a/icons/themed/Draft_DimensionAngular.svg b/icons/themed/Draft_DimensionAngular.svg new file mode 100644 index 0000000000..90c09854c6 --- /dev/null +++ b/icons/themed/Draft_DimensionAngular.svg @@ -0,0 +1,424 @@ + + + Draft_DimensionAngular + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_DimensionAngular + + Sat Feb 15 12:00:00 2020 -0600 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_DimensionAngular.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [yorikvanhavre] + + + + + angle + curved + point + + + Three vertices, two big and one small. Two straight lines tie one big vertex with the small vertex, forming a corner. The two large vertices are tied by a curved arc, in the form of a bow. + + + + diff --git a/icons/themed/Draft_DimensionRadius.svg b/icons/themed/Draft_DimensionRadius.svg new file mode 100644 index 0000000000..68392beb8c --- /dev/null +++ b/icons/themed/Draft_DimensionRadius.svg @@ -0,0 +1,399 @@ + + + Draft_DimensionRadius + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_DimensionRadius + + Sat Feb 15 12:00:00 2020 -0600 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_DimensionRadius.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [yorikvanhavre] + + + + + angle + curved + point + + + A circular arc, a point on it, and a point indicating the center. The point on the arc and the certer are tied by a radius. + + + + diff --git a/icons/themed/Draft_Dimension_Tree.svg b/icons/themed/Draft_Dimension_Tree.svg new file mode 100644 index 0000000000..04ef001f45 --- /dev/null +++ b/icons/themed/Draft_Dimension_Tree.svg @@ -0,0 +1,323 @@ + + + Draft_Dimension_Tree + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_Dimension_Tree + + Wed Oct 6 12:19:00 2019 -0600 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Dimenstion_Tree + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [yorikvanhavre] + + + + + triangle + arrows + + + Two triangles, one pointing left, the other right, with a small line between the two + + + + diff --git a/icons/themed/Draft_Dot.svg b/icons/themed/Draft_Dot.svg new file mode 100644 index 0000000000..9b8a02b3c4 --- /dev/null +++ b/icons/themed/Draft_Dot.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 17 15:36:02 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Dot.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot; circle + + + A dot or circle + + + + diff --git a/icons/themed/Draft_Downgrade.svg b/icons/themed/Draft_Downgrade.svg new file mode 100644 index 0000000000..4fe286418a --- /dev/null +++ b/icons/themed/Draft_Downgrade.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Downgrade.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + down + + + An arrow pointing downwards + + + + diff --git a/icons/themed/Draft_Draft.svg b/icons/themed/Draft_Draft.svg new file mode 100644 index 0000000000..4422559fcf --- /dev/null +++ b/icons/themed/Draft_Draft.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + image/svg+xml + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Draft.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + square + rectangle + circle + + + The intersecting outlines of a circle and a square or rectangle + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Draft2Sketch.svg b/icons/themed/Draft_Draft2Sketch.svg new file mode 100644 index 0000000000..df6eb32045 --- /dev/null +++ b/icons/themed/Draft_Draft2Sketch.svg @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Tue Dec 6 17:18:18 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Draft2Sketch.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + circe + square + rectangle + arrow + + + The intersecting outlines of a pair of circles and pair of squares behind a pair of arrows pointing in opposing directions up and down + + + + diff --git a/icons/themed/Draft_Edit.svg b/icons/themed/Draft_Edit.svg new file mode 100644 index 0000000000..923f76cfd2 --- /dev/null +++ b/icons/themed/Draft_Edit.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Edit.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + polygon + pencil + edit + + + Irregular polygon behind a pencil + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Ellipse.svg b/icons/themed/Draft_Ellipse.svg new file mode 100644 index 0000000000..89e43f5c9f --- /dev/null +++ b/icons/themed/Draft_Ellipse.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mon Apr 1 17:46:32 2013 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Ellipse.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + ellipse + dot + + + An ellipse with a dot below and to the left and another dot above and to the right + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Facebinder.svg b/icons/themed/Draft_Facebinder.svg new file mode 100644 index 0000000000..e8d3536ade --- /dev/null +++ b/icons/themed/Draft_Facebinder.svg @@ -0,0 +1,493 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Thu Oct 10 19:25:33 2013 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_ + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + polygon + + + A large polygon to the left with two smaller adjacent polygons to the right. + + + + diff --git a/icons/themed/Draft_Facebinder_Provider.svg b/icons/themed/Draft_Facebinder_Provider.svg new file mode 100644 index 0000000000..809fff976a --- /dev/null +++ b/icons/themed/Draft_Facebinder_Provider.svg @@ -0,0 +1,493 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Thu Oct 10 19:25:33 2013 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_ + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + polygon + + + A large polygon to the left with two smaller adjacent polygons to the right. + + + + diff --git a/icons/themed/Draft_Fillet.svg b/icons/themed/Draft_Fillet.svg new file mode 100644 index 0000000000..d90dba97a5 --- /dev/null +++ b/icons/themed/Draft_Fillet.svg @@ -0,0 +1,386 @@ + + + Draft_Fillet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_Fillet + + + [vocx] + + + Sketcher_CreateFillet + 2019-08-21 01:17:00 CDT + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Draft_Fillet + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, [wmayer] + + + A circular arc passing through two vertices. Extending from the vertices two dashed intersect each other at a right angle. + + + arc + vertices + fillet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Finish.svg b/icons/themed/Draft_Finish.svg new file mode 100644 index 0000000000..dd4e1230d7 --- /dev/null +++ b/icons/themed/Draft_Finish.svg @@ -0,0 +1,388 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_ + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + dot + checkmark + check + correct + + + Three sides of a square or diamond with a dot on the three leftmost corners and a large circle on the rightmost corner with a checkmark + + + + diff --git a/icons/themed/Draft_FlipDimension.svg b/icons/themed/Draft_FlipDimension.svg new file mode 100644 index 0000000000..1e647ec9f8 --- /dev/null +++ b/icons/themed/Draft_FlipDimension.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Wed Nov 13 19:25:01 2013 -0200 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_ + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + triangle + arrow + curved + + + Two triangles, one pointing left, the other right, with a curved arrow below them pointing from the left to the right and slightly upwards + + + + diff --git a/icons/themed/Draft_Grid.svg b/icons/themed/Draft_Grid.svg new file mode 100644 index 0000000000..631fb5d17d --- /dev/null +++ b/icons/themed/Draft_Grid.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Tue Dec 29 12:10:22 2015 -0200 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Grid.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + grid + lines + intersecting + + + Six mutually intersecting lines forming a grid + + + + diff --git a/icons/themed/Draft_Hatch.svg b/icons/themed/Draft_Hatch.svg new file mode 100644 index 0000000000..13e3315f14 --- /dev/null +++ b/icons/themed/Draft_Hatch.svg @@ -0,0 +1,179 @@ + + + + TechDraw_TreeHatch + + + + image/svg+xml + + TechDraw_TreeHatch + + + [WandererFan] + + + TechDraw_TreeHatch + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeHatch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Heal.svg b/icons/themed/Draft_Heal.svg new file mode 100644 index 0000000000..3542e35df4 --- /dev/null +++ b/icons/themed/Draft_Heal.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Wed Mar 6 12:14:14 2013 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Heal.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + red cross + cross + circle + + + A red cross similar to a medical red cross on a white circle + + + + diff --git a/icons/themed/Draft_Join.svg b/icons/themed/Draft_Join.svg new file mode 100644 index 0000000000..8ef8f3a8e4 --- /dev/null +++ b/icons/themed/Draft_Join.svg @@ -0,0 +1,392 @@ + + + Draft_Join + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_Join + + Tue Jan 29, 2019 9:26 am + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Join.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agrayson] + + + + + line + arrows + + + A line. Two arrows placed in the middle of the line, pointing at each other. + + + + diff --git a/icons/themed/Draft_Label.svg b/icons/themed/Draft_Label.svg new file mode 100644 index 0000000000..5855933835 --- /dev/null +++ b/icons/themed/Draft_Label.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Layer.svg b/icons/themed/Draft_Layer.svg new file mode 100644 index 0000000000..0eec62b7c3 --- /dev/null +++ b/icons/themed/Draft_Layer.svg @@ -0,0 +1,130 @@ + + + Draft_Layer + + + + + + + + + + + + + image/svg+xml + + Draft_Layer + Tue Jun 10 10:21:01 2014 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Layer.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + page + pages + rectangles + stack + + + Three pages or rectangles stacked on top of each other. Previously VisGroup. + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_LayerManager.svg b/icons/themed/Draft_LayerManager.svg new file mode 100644 index 0000000000..c5560fdeca --- /dev/null +++ b/icons/themed/Draft_LayerManager.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + Jakub Steiner (http://jimmac.musichall.cz), + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Layers.svg b/icons/themed/Draft_Layers.svg new file mode 100644 index 0000000000..f329a8829c --- /dev/null +++ b/icons/themed/Draft_Layers.svg @@ -0,0 +1,147 @@ + + + Draft_Layers + + + + + + + + + + + + + image/svg+xml + + Draft_Layers + Tue Jun 10 10:21:01 2014 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Layers.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + page + pages + rectangles + stack + + + Three pages or rectangles stacked on top of each other. Previously VisGroup. + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Line.svg b/icons/themed/Draft_Line.svg new file mode 100644 index 0000000000..3beeed45e9 --- /dev/null +++ b/icons/themed/Draft_Line.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Line.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot + line + + + A line at an angle from lower left to upper right with a dot at each end + + + + diff --git a/icons/themed/Draft_LinkArray.svg b/icons/themed/Draft_LinkArray.svg new file mode 100644 index 0000000000..3b08dce346 --- /dev/null +++ b/icons/themed/Draft_LinkArray.svg @@ -0,0 +1,505 @@ + + + Draft_LinkArray + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_LinkArray + + Jul 15 11:50:00 2019 -0600 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_LinkArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [realthunder] + + + Six rectangles in a 2 x 3 linear array. With a green arrow on top. + + + rectangle + array + arrow + + + + + + diff --git a/icons/themed/Draft_Lock.svg b/icons/themed/Draft_Lock.svg new file mode 100644 index 0000000000..f6642e0a2c --- /dev/null +++ b/icons/themed/Draft_Lock.svg @@ -0,0 +1,484 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Lock.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot + line + lock + circle + square + + + A square or diamond shape with a dot at each of its three leftmost corners and a larger dot or circle on the rightmost corner containing a lock symbol + + + + diff --git a/icons/themed/Draft_Macro.svg b/icons/themed/Draft_Macro.svg new file mode 100644 index 0000000000..f43014f869 --- /dev/null +++ b/icons/themed/Draft_Macro.svg @@ -0,0 +1,335 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Macro.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + flower + macro + + + A two leaved flower, similar in form to a tulip + + + + diff --git a/icons/themed/Draft_Mirror.svg b/icons/themed/Draft_Mirror.svg new file mode 100644 index 0000000000..03d30033ab --- /dev/null +++ b/icons/themed/Draft_Mirror.svg @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 5 14:19:35 2015 -0200 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Mirror.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + mirror + triangle + dotted + + + A right angled triangle on the left, with a line in the middle and the mirrored form of the triangle on the right + + + + diff --git a/icons/themed/Draft_Move.svg b/icons/themed/Draft_Move.svg new file mode 100644 index 0000000000..577dbdbcb3 --- /dev/null +++ b/icons/themed/Draft_Move.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/Draft_N-Curve.svg b/icons/themed/Draft_N-Curve.svg new file mode 100644 index 0000000000..c6a6600ee7 --- /dev/null +++ b/icons/themed/Draft_N-Curve.svg @@ -0,0 +1,112 @@ + + + Draft_N-Curve + + + + + + + + + + + image/svg+xml + + Draft_N-Curve + Sat Feb 15 23:00:00 2020 +0000 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_N-Curve.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + curve + spline + bezier + + + A curve going up, with a bend to the left, then to the right, and then again to the left + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_N-Linear.svg b/icons/themed/Draft_N-Linear.svg new file mode 100644 index 0000000000..7ebbfe06d6 --- /dev/null +++ b/icons/themed/Draft_N-Linear.svg @@ -0,0 +1,112 @@ + + + Draft_N-Linear + + + + + + + + + + + image/svg+xml + + Draft_N-Linear + Sat Feb 15 23:00:00 2020 +0000 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_N-Linear.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + line + wire + polyline + + + A polygonal line moving to the right: one line segment going up, another going down, and up again + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_N-Polygon.svg b/icons/themed/Draft_N-Polygon.svg new file mode 100644 index 0000000000..1809c0de51 --- /dev/null +++ b/icons/themed/Draft_N-Polygon.svg @@ -0,0 +1,163 @@ + + + Draft_N-Polygon + + + + + + + + + + + + + + + + image/svg+xml + + Draft_N-Polygon + Sat Feb 15 23:00:00 2020 +0000 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_N-Polygon.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + rectangle + pentagon + polygon + + + The intersecting outlines of a rectangle and a pentagon + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_NewLayer.svg b/icons/themed/Draft_NewLayer.svg new file mode 100644 index 0000000000..888cbfdc5e --- /dev/null +++ b/icons/themed/Draft_NewLayer.svg @@ -0,0 +1,125 @@ + + + Draft_NewLayer + + + + + + + + + + + image/svg+xml + + Draft_NewLayer + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_NewLayer.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + page + pages + rectangles + stack + + + A layer with a plus sign on its bottom right corner. + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Offset.svg b/icons/themed/Draft_Offset.svg new file mode 100644 index 0000000000..28f6afc2f5 --- /dev/null +++ b/icons/themed/Draft_Offset.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Offset.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + offset + + + An angled and curved shape nested within a similar, but larger version of itself + + + + diff --git a/icons/themed/Draft_PathArray.svg b/icons/themed/Draft_PathArray.svg new file mode 100644 index 0000000000..934deaab09 --- /dev/null +++ b/icons/themed/Draft_PathArray.svg @@ -0,0 +1,922 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Wed Nov 27 18:41:35 2013 -0500 + + + [WandererFan] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PathArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + rectangle + line + path + sequence + repetition + + + Three rectangles joined by a path, one in the lower left aligned top-bottom, another in the center aligned left-right and a third aligned top-bottom in the top right corner + + + + diff --git a/icons/themed/Draft_PathLinkArray.svg b/icons/themed/Draft_PathLinkArray.svg new file mode 100644 index 0000000000..030d06f8d2 --- /dev/null +++ b/icons/themed/Draft_PathLinkArray.svg @@ -0,0 +1,951 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jul 15, 2019, 11:50:00 CDT + + + [realthunder] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PathLinkArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [WandererFan] + + + + + rectangle + line + path + sequence + repetition + arrow + + + Three rectangles joined by a path, one in the lower left aligned top-bottom, another in the center aligned left-right and a third aligned top-bottom in the top right corner. An arrow on top. + + + + diff --git a/icons/themed/Draft_PathTwistedArray.svg b/icons/themed/Draft_PathTwistedArray.svg new file mode 100644 index 0000000000..65691ee924 --- /dev/null +++ b/icons/themed/Draft_PathTwistedArray.svg @@ -0,0 +1,1001 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Tue Sept 1 00:00:00 2020 -0500 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PathTwistedArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + rectangle + line + path + sequence + repetition + + + Three rectangles arranged following a path, one to the left, one in the middle, and one near the end. The path curves in an approximate spiral pattern. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_PathTwistedLinkArray.svg b/icons/themed/Draft_PathTwistedLinkArray.svg new file mode 100644 index 0000000000..ee15a2007d --- /dev/null +++ b/icons/themed/Draft_PathTwistedLinkArray.svg @@ -0,0 +1,1074 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Tue Sept 1 00:00:00 2020 -0500 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PathTwistedLinkArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + rectangle + line + path + sequence + repetition + + + Three rectangles arranged following a path, one to the left, one in the middle, and one near the end. The path curves in an approximate spiral pattern. A green arrow indicates the Link variant. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_PlaneProxy.svg b/icons/themed/Draft_PlaneProxy.svg new file mode 100644 index 0000000000..59da04ce22 --- /dev/null +++ b/icons/themed/Draft_PlaneProxy.svg @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PlaneProxy.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, vocx + + + + + rectangle + grid + plane + + + A rectangle sitting on a plane aligned to a grid that is going into the page from the left to the right; color variation + + + + + diff --git a/icons/themed/Draft_Point.svg b/icons/themed/Draft_Point.svg new file mode 100644 index 0000000000..9505d32fb6 --- /dev/null +++ b/icons/themed/Draft_Point.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 17 15:36:02 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Point.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dot circle + + + A dot or circle + + + + diff --git a/icons/themed/Draft_PointArray.svg b/icons/themed/Draft_PointArray.svg new file mode 100644 index 0000000000..f08dcb1d95 --- /dev/null +++ b/icons/themed/Draft_PointArray.svg @@ -0,0 +1,319 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + diff --git a/icons/themed/Draft_PointLinkArray.svg b/icons/themed/Draft_PointLinkArray.svg new file mode 100644 index 0000000000..e57d560458 --- /dev/null +++ b/icons/themed/Draft_PointLinkArray.svg @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + + + + + diff --git a/icons/themed/Draft_PolarArray.svg b/icons/themed/Draft_PolarArray.svg new file mode 100644 index 0000000000..6c1f470fad --- /dev/null +++ b/icons/themed/Draft_PolarArray.svg @@ -0,0 +1,325 @@ + + + Draft_PolarArray + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_PolarArray + + Dec 24 18:30:00 2019 CST + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PolarArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [yorikvanhavre] + + + Four rectangles in a polar pattern spanning 90 degrees + + + rectangle + array + + + + + + diff --git a/icons/themed/Draft_PolarLinkArray.svg b/icons/themed/Draft_PolarLinkArray.svg new file mode 100644 index 0000000000..9fac5efab1 --- /dev/null +++ b/icons/themed/Draft_PolarLinkArray.svg @@ -0,0 +1,368 @@ + + + Draft_PolarLinkArray + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_PolarLinkArray + + Dec 24 18:30:00 2019 CST + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_PolarLinkArray.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [yorikvanhavre] + + + Four rectangles in a polar pattern spanning 90 degrees, and a green arrow denoting that it uses the Link component + + + rectangle + array + link + + + + + + + + + + diff --git a/icons/themed/Draft_Polygon.svg b/icons/themed/Draft_Polygon.svg new file mode 100644 index 0000000000..e5fa59dc96 --- /dev/null +++ b/icons/themed/Draft_Polygon.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Polygon.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + pentagon + polygon + dot + circle + + + A pentagon with a dot in the center and another on the rightmost corner + + + + diff --git a/icons/themed/Draft_Rectangle.svg b/icons/themed/Draft_Rectangle.svg new file mode 100644 index 0000000000..eca75170c3 --- /dev/null +++ b/icons/themed/Draft_Rectangle.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Rectangle.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + A square or rectangle with a dot or circle on the lower left and upper right corners + + + square + rectangle + dot + + + + + + diff --git a/icons/themed/Draft_Rotate.svg b/icons/themed/Draft_Rotate.svg new file mode 100644 index 0000000000..f773752d11 --- /dev/null +++ b/icons/themed/Draft_Rotate.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Rotate.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + An arrow in a circular shape with the head curving towards the tail + + + arrow + curved + refresh + rotate + + + + + + diff --git a/icons/themed/Draft_Scale.svg b/icons/themed/Draft_Scale.svg new file mode 100644 index 0000000000..ca6a5b0503 --- /dev/null +++ b/icons/themed/Draft_Scale.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Scale.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + square + arrow + dotted line + + + + A small square in the bottom left corner of a large dotted box with an arrow pointing from the top left corner of the inner box to the top left corner of the outer box + + + + diff --git a/icons/themed/Draft_SelectGroup.svg b/icons/themed/Draft_SelectGroup.svg new file mode 100644 index 0000000000..9449e8c086 --- /dev/null +++ b/icons/themed/Draft_SelectGroup.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_SelectGroup.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + arrow + page + shapes + + + A cursor arrow pointing from left to right onto a folder with an square object on it + + + + + + + + + + diff --git a/icons/themed/Draft_SelectPlane.svg b/icons/themed/Draft_SelectPlane.svg new file mode 100644 index 0000000000..4768242ad4 --- /dev/null +++ b/icons/themed/Draft_SelectPlane.svg @@ -0,0 +1,260 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_SelectPlane.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + rectangle + grid + plane + + + A rectangle sitting on a plane aligned to a grid that is going into the page from the left to the right + + + + diff --git a/icons/themed/Draft_ShapeString.svg b/icons/themed/Draft_ShapeString.svg new file mode 100644 index 0000000000..4e1c9f6c6c --- /dev/null +++ b/icons/themed/Draft_ShapeString.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + +   + + + + + + image/svg+xml + + + + Mon Apr 15 13:25:25 2013 -0400 + + + [WandererFan] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_ShapeString.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + S + letter + + + A capital letter S, slightly italicized + + + + diff --git a/icons/themed/Draft_ShapeString_tree.svg b/icons/themed/Draft_ShapeString_tree.svg new file mode 100644 index 0000000000..3a6acaf90a --- /dev/null +++ b/icons/themed/Draft_ShapeString_tree.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +   + + + + + image/svg+xml + + + + Mon Apr 15 13:25:25 2013 -0400 + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_ShapeString_tree.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [wandererfan] + + + + + S + letter + + + A capital letter S, slightly italicized; color variation + + + + diff --git a/icons/themed/Draft_Slope.svg b/icons/themed/Draft_Slope.svg new file mode 100644 index 0000000000..fd7c2a8107 --- /dev/null +++ b/icons/themed/Draft_Slope.svg @@ -0,0 +1,391 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Aug 22 17:34:38 2016 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Slope.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + line + + + An arrow pointing down and to the right parallel to a downwardly sloping line + + + + diff --git a/icons/themed/Draft_Snap.svg b/icons/themed/Draft_Snap.svg new file mode 100644 index 0000000000..317c032af2 --- /dev/null +++ b/icons/themed/Draft_Snap.svg @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Thu Feb 23 14:44:03 2012 -0200 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + perpendicular + point + line + dot + circle + + + The perpendicular symbol above and to the left of a dot at the midpoint of a line + + + + diff --git a/icons/themed/Draft_Snap_Angle.svg b/icons/themed/Draft_Snap_Angle.svg new file mode 100644 index 0000000000..ef4fae1702 --- /dev/null +++ b/icons/themed/Draft_Snap_Angle.svg @@ -0,0 +1,549 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Angle.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Four dots equally spaced around the circumference of a circle + + + dot + circle + dots + + + + + + diff --git a/icons/themed/Draft_Snap_Center.svg b/icons/themed/Draft_Snap_Center.svg new file mode 100644 index 0000000000..e278aac3a9 --- /dev/null +++ b/icons/themed/Draft_Snap_Center.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Center.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + A concentric circle and dot + + + dot + circle + concentric + + + + + + diff --git a/icons/themed/Draft_Snap_Dimensions.svg b/icons/themed/Draft_Snap_Dimensions.svg new file mode 100644 index 0000000000..334f46534a --- /dev/null +++ b/icons/themed/Draft_Snap_Dimensions.svg @@ -0,0 +1,129 @@ + + + + + + + image/svg+xml + + Tue Sep 17 23:07:04 2013 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Dimensions.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Square with one missing corner and numbers by the remaining sides. + + + line + lines + square + numbers + measure + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Snap_Endpoint.svg b/icons/themed/Draft_Snap_Endpoint.svg new file mode 100644 index 0000000000..f1b0553c6c --- /dev/null +++ b/icons/themed/Draft_Snap_Endpoint.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Endpoint.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + endpoint + + + + Line with bulge at one endpoint + + + + diff --git a/icons/themed/Draft_Snap_Extension.svg b/icons/themed/Draft_Snap_Extension.svg new file mode 100644 index 0000000000..e0457a7906 --- /dev/null +++ b/icons/themed/Draft_Snap_Extension.svg @@ -0,0 +1,422 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Extension.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Three dots or circles in a horizontal sequence similar to an ellipsis + + + circle + circles + dot + dots + ellipsis + + + + + + diff --git a/icons/themed/Draft_Snap_Grid.svg b/icons/themed/Draft_Snap_Grid.svg new file mode 100644 index 0000000000..e322e189b3 --- /dev/null +++ b/icons/themed/Draft_Snap_Grid.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Grid.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Four mutually intersecting lines in a grid like pattern similar to a hash or pound sign + + + hash + pound + grid + intersection + + + + + + diff --git a/icons/themed/Draft_Snap_Intersection.svg b/icons/themed/Draft_Snap_Intersection.svg new file mode 100644 index 0000000000..ec5af8b3fb --- /dev/null +++ b/icons/themed/Draft_Snap_Intersection.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Intersection.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + cross + multiply + multiplication + intersection + + + An angled cross, similar to a multiplication sign + + + + diff --git a/icons/themed/Draft_Snap_Lock.svg b/icons/themed/Draft_Snap_Lock.svg new file mode 100644 index 0000000000..ac7fda6055 --- /dev/null +++ b/icons/themed/Draft_Snap_Lock.svg @@ -0,0 +1,191 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Lock.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + A locked lock + + + lock + locked + + + + + + diff --git a/icons/themed/Draft_Snap_Midpoint.svg b/icons/themed/Draft_Snap_Midpoint.svg new file mode 100644 index 0000000000..519e7df79c --- /dev/null +++ b/icons/themed/Draft_Snap_Midpoint.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Midpoint.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + A line at an angle with a bulbous center + + + line + midpoint + + + + + + diff --git a/icons/themed/Draft_Snap_Near.svg b/icons/themed/Draft_Snap_Near.svg new file mode 100644 index 0000000000..da97350bfd --- /dev/null +++ b/icons/themed/Draft_Snap_Near.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Fri Mar 16 18:29:56 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Near.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + A dot or circle above and to the right of a line at a slight angle + + + line + circle + dot + + + + + + diff --git a/icons/themed/Draft_Snap_Ortho.svg b/icons/themed/Draft_Snap_Ortho.svg new file mode 100644 index 0000000000..42bb5ff9c7 --- /dev/null +++ b/icons/themed/Draft_Snap_Ortho.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Ortho.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Crosshair like symbol + + + cross + orthogonal + plus + + + + + + diff --git a/icons/themed/Draft_Snap_Parallel.svg b/icons/themed/Draft_Snap_Parallel.svg new file mode 100644 index 0000000000..bfa234218c --- /dev/null +++ b/icons/themed/Draft_Snap_Parallel.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Parallel.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Two parallel lines at a slight angle + + + line + lines + parallel + + + + + + diff --git a/icons/themed/Draft_Snap_Perpendicular.svg b/icons/themed/Draft_Snap_Perpendicular.svg new file mode 100644 index 0000000000..b580976e0b --- /dev/null +++ b/icons/themed/Draft_Snap_Perpendicular.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Mar 12 17:20:03 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Perpendicular.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Perpendicular symbol + + + perpendicular + + + + + + diff --git a/icons/themed/Draft_Snap_Recenter.svg b/icons/themed/Draft_Snap_Recenter.svg new file mode 100644 index 0000000000..e833a3c084 --- /dev/null +++ b/icons/themed/Draft_Snap_Recenter.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Fri Mar 7 15:58:51 2014 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_WorkingPlane.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Square with small circe in lower left corner + + + plane + square + circle + + + + + + diff --git a/icons/themed/Draft_Snap_Special.svg b/icons/themed/Draft_Snap_Special.svg new file mode 100644 index 0000000000..05a798f704 --- /dev/null +++ b/icons/themed/Draft_Snap_Special.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Aug 22 13:49:54 2016 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_Special.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Cube with circle in front of the lower left corner + + + cube + circle + + + + + + diff --git a/icons/themed/Draft_Snap_WorkingPlane.svg b/icons/themed/Draft_Snap_WorkingPlane.svg new file mode 100644 index 0000000000..dea1cd59ce --- /dev/null +++ b/icons/themed/Draft_Snap_WorkingPlane.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Fri Mar 7 15:58:51 2014 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Snap_WorkingPlane.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Square with small circe in lower left corner + + + plane + square + circle + + + + + + diff --git a/icons/themed/Draft_Split.svg b/icons/themed/Draft_Split.svg new file mode 100644 index 0000000000..0b2ab11c49 --- /dev/null +++ b/icons/themed/Draft_Split.svg @@ -0,0 +1,400 @@ + + + Draft_Split + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_Split + + Tue Jan 29, 2019 9:26 am + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Split.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + line + vertical lines + + + One horizontal line. Two vertical lines, perpendicular to the first one, placed close to the midpoint of the first one + + + + diff --git a/icons/themed/Draft_Stretch.svg b/icons/themed/Draft_Stretch.svg new file mode 100644 index 0000000000..911917248f --- /dev/null +++ b/icons/themed/Draft_Stretch.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Scale.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + square + arrow + dotted line + + + + A small square in the bottom left corner of a large dotted box with an arrow pointing from the top left corner of the inner box to the top left corner of the outer box + + + + diff --git a/icons/themed/Draft_SubelementHighlight.svg b/icons/themed/Draft_SubelementHighlight.svg new file mode 100644 index 0000000000..f7eb595d46 --- /dev/null +++ b/icons/themed/Draft_SubelementHighlight.svg @@ -0,0 +1,283 @@ + + + Draft_SubelementHighlight + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Draft_SubelementHighlight + Oct 8 02:41:00 2019 CDT + + + [vocx] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_SubelementHighlight.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson, [wmayer] + + + + + polygon + pencil + edit + + + Three straight line segments, with a vertex at each end of a segment, next to a pencil + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_SwitchMode.svg b/icons/themed/Draft_SwitchMode.svg new file mode 100644 index 0000000000..18eb3365c0 --- /dev/null +++ b/icons/themed/Draft_SwitchMode.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_SwitchMode.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + square + squares + empty + full + filled + wireframe + + + An empty square in front of and slightly to the top left of a filled square + + + + diff --git a/icons/themed/Draft_Text.svg b/icons/themed/Draft_Text.svg new file mode 100644 index 0000000000..444489f937 --- /dev/null +++ b/icons/themed/Draft_Text.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Text.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + The capital letter A, slightly italicized + + + A + letter + + + + + + diff --git a/icons/themed/Draft_Trimex.svg b/icons/themed/Draft_Trimex.svg new file mode 100644 index 0000000000..c7d5204180 --- /dev/null +++ b/icons/themed/Draft_Trimex.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Trimex.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + arrows + line + + + A vertical line with an arrow pointing away from it on each side + + + + diff --git a/icons/themed/Draft_Upgrade.svg b/icons/themed/Draft_Upgrade.svg new file mode 100644 index 0000000000..be82feb744 --- /dev/null +++ b/icons/themed/Draft_Upgrade.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Upgrade.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + up + + + A large blue arrow pointing upwards + + + + diff --git a/icons/themed/Draft_VisGroup.svg b/icons/themed/Draft_VisGroup.svg new file mode 100644 index 0000000000..cab1de8064 --- /dev/null +++ b/icons/themed/Draft_VisGroup.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + Tue Jun 10 10:21:01 2014 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_VisGroup.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + page + pages + rectangles + stack + + + Three pages or rectangles stacked on top of each other + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Draft_Wipe.svg b/icons/themed/Draft_Wipe.svg new file mode 100644 index 0000000000..f50d298425 --- /dev/null +++ b/icons/themed/Draft_Wipe.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Fri Oct 14 18:47:29 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Wipe.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + cross + line + + + A large red cross over a line which is white left of the cross, blue right of the cross + + + + diff --git a/icons/themed/Draft_Wire.svg b/icons/themed/Draft_Wire.svg new file mode 100644 index 0000000000..d18c4459d9 --- /dev/null +++ b/icons/themed/Draft_Wire.svg @@ -0,0 +1,321 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Wire.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + dots + dot + circle + circles + line + lines + + + Four scattered dots or circles joined by a line + + + + diff --git a/icons/themed/Draft_WireToBSpline.svg b/icons/themed/Draft_WireToBSpline.svg new file mode 100644 index 0000000000..2987d9658b --- /dev/null +++ b/icons/themed/Draft_WireToBSpline.svg @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_WireToBSpline.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + wire + zig-zag + jagged + smooth + spline + curve + arrow + triangle + + + A jagged zig-zagging line above a downwards pointing triangle above a smoothly meandering line + + + + diff --git a/icons/themed/DrawStyleAsIs.svg b/icons/themed/DrawStyleAsIs.svg new file mode 100644 index 0000000000..59fca3157c --- /dev/null +++ b/icons/themed/DrawStyleAsIs.svg @@ -0,0 +1,358 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/DrawStyleFlatLines.svg b/icons/themed/DrawStyleFlatLines.svg new file mode 100644 index 0000000000..6cea444c72 --- /dev/null +++ b/icons/themed/DrawStyleFlatLines.svg @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icons/themed/DrawStyleHiddenLine.svg b/icons/themed/DrawStyleHiddenLine.svg new file mode 100644 index 0000000000..e458685178 --- /dev/null +++ b/icons/themed/DrawStyleHiddenLine.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icons/themed/DrawStyleNoShading.svg b/icons/themed/DrawStyleNoShading.svg new file mode 100644 index 0000000000..5fc72ad762 --- /dev/null +++ b/icons/themed/DrawStyleNoShading.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icons/themed/DrawStylePoints.svg b/icons/themed/DrawStylePoints.svg new file mode 100644 index 0000000000..da7da2d36c --- /dev/null +++ b/icons/themed/DrawStylePoints.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/DrawStyleShaded.svg b/icons/themed/DrawStyleShaded.svg new file mode 100644 index 0000000000..8ee2ff88f8 --- /dev/null +++ b/icons/themed/DrawStyleShaded.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/DrawStyleWireFrame.svg b/icons/themed/DrawStyleWireFrame.svg new file mode 100644 index 0000000000..01a2439b19 --- /dev/null +++ b/icons/themed/DrawStyleWireFrame.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_Analysis.svg b/icons/themed/FEM_Analysis.svg new file mode 100644 index 0000000000..48d9c42466 --- /dev/null +++ b/icons/themed/FEM_Analysis.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-analysis + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/FEM_ClippingPlaneAdd.svg b/icons/themed/FEM_ClippingPlaneAdd.svg new file mode 100644 index 0000000000..1f1557425f --- /dev/null +++ b/icons/themed/FEM_ClippingPlaneAdd.svg @@ -0,0 +1,54 @@ + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-clip + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ClippingPlaneRemoveAll.svg b/icons/themed/FEM_ClippingPlaneRemoveAll.svg new file mode 100644 index 0000000000..9897d21d33 --- /dev/null +++ b/icons/themed/FEM_ClippingPlaneRemoveAll.svg @@ -0,0 +1,61 @@ + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-clip + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintBearing.svg b/icons/themed/FEM_ConstraintBearing.svg new file mode 100644 index 0000000000..c695bba8bd --- /dev/null +++ b/icons/themed/FEM_ConstraintBearing.svg @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-constraint-bearing + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintBodyHeatSource.svg b/icons/themed/FEM_ConstraintBodyHeatSource.svg new file mode 100644 index 0000000000..0b0124ec3b --- /dev/null +++ b/icons/themed/FEM_ConstraintBodyHeatSource.svg @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintCentrif.svg b/icons/themed/FEM_ConstraintCentrif.svg new file mode 100644 index 0000000000..e883669452 --- /dev/null +++ b/icons/themed/FEM_ConstraintCentrif.svg @@ -0,0 +1,209 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintContact.svg b/icons/themed/FEM_ConstraintContact.svg new file mode 100644 index 0000000000..a8b803ee30 --- /dev/null +++ b/icons/themed/FEM_ConstraintContact.svg @@ -0,0 +1,252 @@ + + + + + + image/svg+xml + + + + [vdwalts] + + + fem-constraint-contact + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintCurrentDensity.svg b/icons/themed/FEM_ConstraintCurrentDensity.svg new file mode 100644 index 0000000000..f53d63b43a --- /dev/null +++ b/icons/themed/FEM_ConstraintCurrentDensity.svg @@ -0,0 +1,507 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintDisplacement.svg b/icons/themed/FEM_ConstraintDisplacement.svg new file mode 100644 index 0000000000..a12440c962 --- /dev/null +++ b/icons/themed/FEM_ConstraintDisplacement.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vginkeo] + + + fem-constraint-displacement + 2016-02-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintElectricChargeDensity.svg b/icons/themed/FEM_ConstraintElectricChargeDensity.svg new file mode 100644 index 0000000000..7b22b40b5a --- /dev/null +++ b/icons/themed/FEM_ConstraintElectricChargeDensity.svg @@ -0,0 +1,430 @@ + + + + FEM_ConstraintElectrostaticPotential + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + FEM_ConstraintElectrostaticPotential + + + [bitacovir] + + + PartDesign_MoveTip + 12-02-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintElectrostaticPotential.svg b/icons/themed/FEM_ConstraintElectrostaticPotential.svg new file mode 100644 index 0000000000..a9e83fef74 --- /dev/null +++ b/icons/themed/FEM_ConstraintElectrostaticPotential.svg @@ -0,0 +1,114 @@ + + + FEM_ConstraintElectrostaticPotential + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + FEM_ConstraintElectrostaticPotential + + + [bitacovir] + + + PartDesign_MoveTip + 12-02-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintFixed.svg b/icons/themed/FEM_ConstraintFixed.svg new file mode 100644 index 0000000000..461edf62ee --- /dev/null +++ b/icons/themed/FEM_ConstraintFixed.svg @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-constraint-fixed + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintFlowVelocity.svg b/icons/themed/FEM_ConstraintFlowVelocity.svg new file mode 100644 index 0000000000..6beea7efbc --- /dev/null +++ b/icons/themed/FEM_ConstraintFlowVelocity.svg @@ -0,0 +1,99 @@ + + + FEM_ConstraintFlowVelocity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + FEM_ConstraintFlowVelocity + + + [bitacovir] + + + PartDesign_MoveTip + 12-02-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintFluidBoundary.svg b/icons/themed/FEM_ConstraintFluidBoundary.svg new file mode 100644 index 0000000000..4f75a4a553 --- /dev/null +++ b/icons/themed/FEM_ConstraintFluidBoundary.svg @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [qingfengxia] + + + fem-constraint-fluid-boundary + 2016-08-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintForce.svg b/icons/themed/FEM_ConstraintForce.svg new file mode 100644 index 0000000000..6384a77ba7 --- /dev/null +++ b/icons/themed/FEM_ConstraintForce.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-constraint-force + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintGear.svg b/icons/themed/FEM_ConstraintGear.svg new file mode 100644 index 0000000000..4bec1ee4b6 --- /dev/null +++ b/icons/themed/FEM_ConstraintGear.svg @@ -0,0 +1,258 @@ + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintHeatflux.svg b/icons/themed/FEM_ConstraintHeatflux.svg new file mode 100644 index 0000000000..254ecf3477 --- /dev/null +++ b/icons/themed/FEM_ConstraintHeatflux.svg @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + fem-constraint-heatflux + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintInitialFlowVelocity.svg b/icons/themed/FEM_ConstraintInitialFlowVelocity.svg new file mode 100644 index 0000000000..0226e23d84 --- /dev/null +++ b/icons/themed/FEM_ConstraintInitialFlowVelocity.svg @@ -0,0 +1,100 @@ + + + FEM_ConstraintInitialFlowVelocity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + FEM_ConstraintInitialFlowVelocity + + + [bitacovir] + + + PartDesign_MoveTip + 12-02-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintInitialPressure.svg b/icons/themed/FEM_ConstraintInitialPressure.svg new file mode 100644 index 0000000000..6341f74b82 --- /dev/null +++ b/icons/themed/FEM_ConstraintInitialPressure.svg @@ -0,0 +1,112 @@ + + + FEM_ConstraintInitialFlowVelocity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + FEM_ConstraintInitialFlowVelocity + + + [bitacovir] + + + PartDesign_MoveTip + 12-02-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintInitialTemperature.svg b/icons/themed/FEM_ConstraintInitialTemperature.svg new file mode 100644 index 0000000000..ea59282163 --- /dev/null +++ b/icons/themed/FEM_ConstraintInitialTemperature.svg @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintMagnetization.svg b/icons/themed/FEM_ConstraintMagnetization.svg new file mode 100644 index 0000000000..5627e6513b --- /dev/null +++ b/icons/themed/FEM_ConstraintMagnetization.svg @@ -0,0 +1,413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintPlaneRotation.svg b/icons/themed/FEM_ConstraintPlaneRotation.svg new file mode 100644 index 0000000000..b55f2294f4 --- /dev/null +++ b/icons/themed/FEM_ConstraintPlaneRotation.svg @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + +   +   +   + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintPressure.svg b/icons/themed/FEM_ConstraintPressure.svg new file mode 100644 index 0000000000..d872adcd4b --- /dev/null +++ b/icons/themed/FEM_ConstraintPressure.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-constraint-pressure + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintPulley.svg b/icons/themed/FEM_ConstraintPulley.svg new file mode 100644 index 0000000000..1410fb2e9c --- /dev/null +++ b/icons/themed/FEM_ConstraintPulley.svg @@ -0,0 +1,264 @@ + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-constraint-pulley + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintRigidBody.svg b/icons/themed/FEM_ConstraintRigidBody.svg new file mode 100644 index 0000000000..83d7b3eaa7 --- /dev/null +++ b/icons/themed/FEM_ConstraintRigidBody.svg @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintSectionPrint.svg b/icons/themed/FEM_ConstraintSectionPrint.svg new file mode 100644 index 0000000000..8abfe5947f --- /dev/null +++ b/icons/themed/FEM_ConstraintSectionPrint.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-beam-section + 2015-09-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintSelfWeight.svg b/icons/themed/FEM_ConstraintSelfWeight.svg new file mode 100644 index 0000000000..ea987a3e09 --- /dev/null +++ b/icons/themed/FEM_ConstraintSelfWeight.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-constraint-selfweight + 2016-07-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintSpring.svg b/icons/themed/FEM_ConstraintSpring.svg new file mode 100644 index 0000000000..0aaf8938f6 --- /dev/null +++ b/icons/themed/FEM_ConstraintSpring.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintTemperature.svg b/icons/themed/FEM_ConstraintTemperature.svg new file mode 100644 index 0000000000..2301a15acc --- /dev/null +++ b/icons/themed/FEM_ConstraintTemperature.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + fem-constraint-temperature + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintTie.svg b/icons/themed/FEM_ConstraintTie.svg new file mode 100644 index 0000000000..fd7250b190 --- /dev/null +++ b/icons/themed/FEM_ConstraintTie.svg @@ -0,0 +1,1099 @@ + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ConstraintTransform.svg b/icons/themed/FEM_ConstraintTransform.svg new file mode 100644 index 0000000000..995f6b57ee --- /dev/null +++ b/icons/themed/FEM_ConstraintTransform.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [kgoao] + + + 2016-09-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_CreateElementsSet.svg b/icons/themed/FEM_CreateElementsSet.svg new file mode 100644 index 0000000000..82bce754e7 --- /dev/null +++ b/icons/themed/FEM_CreateElementsSet.svg @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacobir] + + + 2020-03-16 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_CreateNodesSet.svg b/icons/themed/FEM_CreateNodesSet.svg new file mode 100644 index 0000000000..e8f7472e14 --- /dev/null +++ b/icons/themed/FEM_CreateNodesSet.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-create-node-by-poly + 2016-11-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ElementFluid1D.svg b/icons/themed/FEM_ElementFluid1D.svg new file mode 100644 index 0000000000..86de042f5e --- /dev/null +++ b/icons/themed/FEM_ElementFluid1D.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [kgoao] + + + 2017-02-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ElementGeometry1D.svg b/icons/themed/FEM_ElementGeometry1D.svg new file mode 100644 index 0000000000..3ecc902ca5 --- /dev/null +++ b/icons/themed/FEM_ElementGeometry1D.svg @@ -0,0 +1,108 @@ + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + 2015-09-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ElementGeometry2D.svg b/icons/themed/FEM_ElementGeometry2D.svg new file mode 100644 index 0000000000..a0150f9219 --- /dev/null +++ b/icons/themed/FEM_ElementGeometry2D.svg @@ -0,0 +1,118 @@ + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + 2015-09-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_ElementRotation1D.svg b/icons/themed/FEM_ElementRotation1D.svg new file mode 100644 index 0000000000..4818c4d078 --- /dev/null +++ b/icons/themed/FEM_ElementRotation1D.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + 2015-09-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationDeformation.svg b/icons/themed/FEM_EquationDeformation.svg new file mode 100644 index 0000000000..1150f2db17 --- /dev/null +++ b/icons/themed/FEM_EquationDeformation.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationElasticity.svg b/icons/themed/FEM_EquationElasticity.svg new file mode 100644 index 0000000000..bc16c4a99a --- /dev/null +++ b/icons/themed/FEM_EquationElasticity.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + diff --git a/icons/themed/FEM_EquationElectricforce.svg b/icons/themed/FEM_EquationElectricforce.svg new file mode 100644 index 0000000000..2994f6a546 --- /dev/null +++ b/icons/themed/FEM_EquationElectricforce.svg @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationElectrostatic.svg b/icons/themed/FEM_EquationElectrostatic.svg new file mode 100644 index 0000000000..4013618213 --- /dev/null +++ b/icons/themed/FEM_EquationElectrostatic.svg @@ -0,0 +1,494 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationFlow.svg b/icons/themed/FEM_EquationFlow.svg new file mode 100644 index 0000000000..323702a32f --- /dev/null +++ b/icons/themed/FEM_EquationFlow.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [qingfengxia] + + + fem-constraint-fluid-boundary + 2016-08-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationFlux.svg b/icons/themed/FEM_EquationFlux.svg new file mode 100644 index 0000000000..70156f79d2 --- /dev/null +++ b/icons/themed/FEM_EquationFlux.svg @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationHeat.svg b/icons/themed/FEM_EquationHeat.svg new file mode 100644 index 0000000000..fe67d7e5cc --- /dev/null +++ b/icons/themed/FEM_EquationHeat.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + fem-constraint-temperature + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationMagnetodynamic.svg b/icons/themed/FEM_EquationMagnetodynamic.svg new file mode 100644 index 0000000000..73a4a91348 --- /dev/null +++ b/icons/themed/FEM_EquationMagnetodynamic.svg @@ -0,0 +1,710 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationMagnetodynamic2D.svg b/icons/themed/FEM_EquationMagnetodynamic2D.svg new file mode 100644 index 0000000000..d140cae360 --- /dev/null +++ b/icons/themed/FEM_EquationMagnetodynamic2D.svg @@ -0,0 +1,643 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_EquationStaticCurrent.svg b/icons/themed/FEM_EquationStaticCurrent.svg new file mode 100644 index 0000000000..e4a1cfdbd5 --- /dev/null +++ b/icons/themed/FEM_EquationStaticCurrent.svg @@ -0,0 +1,1066 @@ + + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_FEMMesh2Mesh.svg b/icons/themed/FEM_FEMMesh2Mesh.svg new file mode 100644 index 0000000000..bc78674220 --- /dev/null +++ b/icons/themed/FEM_FEMMesh2Mesh.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-to-mesh + 2016-11-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MaterialFluid.svg b/icons/themed/FEM_MaterialFluid.svg new file mode 100644 index 0000000000..1c755aa0f6 --- /dev/null +++ b/icons/themed/FEM_MaterialFluid.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [qingfengxia] + + + fem-material-fluid + 2017-01-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MaterialMechanicalNonlinear.svg b/icons/themed/FEM_MaterialMechanicalNonlinear.svg new file mode 100644 index 0000000000..2fbec61762 --- /dev/null +++ b/icons/themed/FEM_MaterialMechanicalNonlinear.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-material-nonlinear + 2016-09-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MaterialReinforced.svg b/icons/themed/FEM_MaterialReinforced.svg new file mode 100644 index 0000000000..226e038262 --- /dev/null +++ b/icons/themed/FEM_MaterialReinforced.svg @@ -0,0 +1,130 @@ + + + + + fem_material_reinforced + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + fem_material_reinforced + + + + + + fem-material + 2019-06-18 + + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson +[Bitacovir] Rafael Moya + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MaterialSolid.svg b/icons/themed/FEM_MaterialSolid.svg new file mode 100644 index 0000000000..71fa8417f3 --- /dev/null +++ b/icons/themed/FEM_MaterialSolid.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-material + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshBoundaryLayer.svg b/icons/themed/FEM_MeshBoundaryLayer.svg new file mode 100644 index 0000000000..fa2a1faa31 --- /dev/null +++ b/icons/themed/FEM_MeshBoundaryLayer.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacobir] + + + 2020-03-16 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshClear.svg b/icons/themed/FEM_MeshClear.svg new file mode 100644 index 0000000000..8fa0bc2145 --- /dev/null +++ b/icons/themed/FEM_MeshClear.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-clear-mesh + 2016-12-23 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshDisplayInfo.svg b/icons/themed/FEM_MeshDisplayInfo.svg new file mode 100644 index 0000000000..3510948a9e --- /dev/null +++ b/icons/themed/FEM_MeshDisplayInfo.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-print-info + 2016-12-23 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshGmshFromShape.svg b/icons/themed/FEM_MeshGmshFromShape.svg new file mode 100644 index 0000000000..9f2d6d1938 --- /dev/null +++ b/icons/themed/FEM_MeshGmshFromShape.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-gmsh-from-shape + 2016-11-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshGroup.svg b/icons/themed/FEM_MeshGroup.svg new file mode 100644 index 0000000000..8f514736cc --- /dev/null +++ b/icons/themed/FEM_MeshGroup.svg @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacobir] + + + 2020-03-16 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshNetgenFromShape.svg b/icons/themed/FEM_MeshNetgenFromShape.svg new file mode 100644 index 0000000000..b6db782c1a --- /dev/null +++ b/icons/themed/FEM_MeshNetgenFromShape.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-netgen-from-shape + 2016-11-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshRegion.svg b/icons/themed/FEM_MeshRegion.svg new file mode 100644 index 0000000000..b96d77bfc4 --- /dev/null +++ b/icons/themed/FEM_MeshRegion.svg @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + 2016-12-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_MeshResult.svg b/icons/themed/FEM_MeshResult.svg new file mode 100644 index 0000000000..bc9ac25063 --- /dev/null +++ b/icons/themed/FEM_MeshResult.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-gmsh-from-shape + 2016-11-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostBranchFilter.svg b/icons/themed/FEM_PostBranchFilter.svg new file mode 100644 index 0000000000..7c5601d3d4 --- /dev/null +++ b/icons/themed/FEM_PostBranchFilter.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostField.svg b/icons/themed/FEM_PostField.svg new file mode 100644 index 0000000000..4c9bb642df --- /dev/null +++ b/icons/themed/FEM_PostField.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterCalculator.svg b/icons/themed/FEM_PostFilterCalculator.svg new file mode 100644 index 0000000000..3ece8f9120 --- /dev/null +++ b/icons/themed/FEM_PostFilterCalculator.svg @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + + + + + + + + + calc + calculator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + f(x) + diff --git a/icons/themed/FEM_PostFilterClipRegion.svg b/icons/themed/FEM_PostFilterClipRegion.svg new file mode 100644 index 0000000000..365c7abd4f --- /dev/null +++ b/icons/themed/FEM_PostFilterClipRegion.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-clip + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterClipScalar.svg b/icons/themed/FEM_PostFilterClipScalar.svg new file mode 100644 index 0000000000..8daf2adf28 --- /dev/null +++ b/icons/themed/FEM_PostFilterClipScalar.svg @@ -0,0 +1,68 @@ + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-clip-scalar + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterContours.svg b/icons/themed/FEM_PostFilterContours.svg new file mode 100644 index 0000000000..32ee3aec5f --- /dev/null +++ b/icons/themed/FEM_PostFilterContours.svg @@ -0,0 +1,181 @@ + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterCutFunction.svg b/icons/themed/FEM_PostFilterCutFunction.svg new file mode 100644 index 0000000000..858f35b825 --- /dev/null +++ b/icons/themed/FEM_PostFilterCutFunction.svg @@ -0,0 +1,65 @@ + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-cut + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterDataAlongLine.svg b/icons/themed/FEM_PostFilterDataAlongLine.svg new file mode 100644 index 0000000000..26f436d262 --- /dev/null +++ b/icons/themed/FEM_PostFilterDataAlongLine.svg @@ -0,0 +1,52 @@ + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-DataAlongLine + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterDataAtPoint.svg b/icons/themed/FEM_PostFilterDataAtPoint.svg new file mode 100644 index 0000000000..935f1ea06c --- /dev/null +++ b/icons/themed/FEM_PostFilterDataAtPoint.svg @@ -0,0 +1,48 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterGlyph.svg b/icons/themed/FEM_PostFilterGlyph.svg new file mode 100644 index 0000000000..2aadf4b412 --- /dev/null +++ b/icons/themed/FEM_PostFilterGlyph.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-warp + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterLinearizedStresses.svg b/icons/themed/FEM_PostFilterLinearizedStresses.svg new file mode 100644 index 0000000000..c4d2795183 --- /dev/null +++ b/icons/themed/FEM_PostFilterLinearizedStresses.svg @@ -0,0 +1,79 @@ + + + + + + + + + image/svg+xml + + + + [mkhizenz] + + + fem-linearizedstresses + 2016-12-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFilterWarp.svg b/icons/themed/FEM_PostFilterWarp.svg new file mode 100644 index 0000000000..9be5176be6 --- /dev/null +++ b/icons/themed/FEM_PostFilterWarp.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-warp + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/FEM_PostFrames.svg b/icons/themed/FEM_PostFrames.svg new file mode 100644 index 0000000000..cb56230a5c --- /dev/null +++ b/icons/themed/FEM_PostFrames.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + diff --git a/icons/themed/FEM_PostHistogram.svg b/icons/themed/FEM_PostHistogram.svg new file mode 100644 index 0000000000..a78ef55ee6 --- /dev/null +++ b/icons/themed/FEM_PostHistogram.svg @@ -0,0 +1,69 @@ + + + + + + + + + diff --git a/icons/themed/FEM_PostIndex.svg b/icons/themed/FEM_PostIndex.svg new file mode 100644 index 0000000000..5357ce9bf5 --- /dev/null +++ b/icons/themed/FEM_PostIndex.svg @@ -0,0 +1,42 @@ + + + + + + diff --git a/icons/themed/FEM_PostLineplot.svg b/icons/themed/FEM_PostLineplot.svg new file mode 100644 index 0000000000..cdbd72aa4e --- /dev/null +++ b/icons/themed/FEM_PostLineplot.svg @@ -0,0 +1,46 @@ + + + + + + + diff --git a/icons/themed/FEM_PostPipelineFromResult.svg b/icons/themed/FEM_PostPipelineFromResult.svg new file mode 100644 index 0000000000..2f9a9949c6 --- /dev/null +++ b/icons/themed/FEM_PostPipelineFromResult.svg @@ -0,0 +1,58 @@ + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-data + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_PostSpreadsheet.svg b/icons/themed/FEM_PostSpreadsheet.svg new file mode 100644 index 0000000000..519a24780a --- /dev/null +++ b/icons/themed/FEM_PostSpreadsheet.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + diff --git a/icons/themed/FEM_ResultShow.svg b/icons/themed/FEM_ResultShow.svg new file mode 100644 index 0000000000..5d429cd643 --- /dev/null +++ b/icons/themed/FEM_ResultShow.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-result + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/FEM_ResultsPurge.svg b/icons/themed/FEM_ResultsPurge.svg new file mode 100644 index 0000000000..70d6ded2ec --- /dev/null +++ b/icons/themed/FEM_ResultsPurge.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-purge-results + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_SolverControl.svg b/icons/themed/FEM_SolverControl.svg new file mode 100644 index 0000000000..d4e367a2f1 --- /dev/null +++ b/icons/themed/FEM_SolverControl.svg @@ -0,0 +1,311 @@ + + + + + FEM_SolverStandard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bitacovir] + + + FEM_SolverStandard + 2023-09-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_SolverElmer.svg b/icons/themed/FEM_SolverElmer.svg new file mode 100644 index 0000000000..24f21e86e8 --- /dev/null +++ b/icons/themed/FEM_SolverElmer.svg @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_SolverMystran.svg b/icons/themed/FEM_SolverMystran.svg new file mode 100644 index 0000000000..b5b7ba9e01 --- /dev/null +++ b/icons/themed/FEM_SolverMystran.svg @@ -0,0 +1,26 @@ + + + +image/svg+xml diff --git a/icons/themed/FEM_SolverRun.svg b/icons/themed/FEM_SolverRun.svg new file mode 100644 index 0000000000..552a51f9f7 --- /dev/null +++ b/icons/themed/FEM_SolverRun.svg @@ -0,0 +1,310 @@ + + + + + FEM_SolverStandard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bitacovir] + + + FEM_SolverStandard + 2023-09-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_SolverStandard.svg b/icons/themed/FEM_SolverStandard.svg new file mode 100644 index 0000000000..03c4524682 --- /dev/null +++ b/icons/themed/FEM_SolverStandard.svg @@ -0,0 +1,276 @@ + + + + + FEM_SolverStandard + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bitacovir] + + + FEM_SolverStandard + 2023-09-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FEM_SolverZ88.svg b/icons/themed/FEM_SolverZ88.svg new file mode 100644 index 0000000000..da1b6764dc --- /dev/null +++ b/icons/themed/FEM_SolverZ88.svg @@ -0,0 +1,33 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + OS + OS + + + + + + diff --git a/icons/themed/Feature.svg b/icons/themed/Feature.svg new file mode 100644 index 0000000000..35ebebefb5 --- /dev/null +++ b/icons/themed/Feature.svg @@ -0,0 +1,86 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/FemWorkbench.svg b/icons/themed/FemWorkbench.svg new file mode 100644 index 0000000000..7f5fff33d4 --- /dev/null +++ b/icons/themed/FemWorkbench.svg @@ -0,0 +1,704 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/FitSurface.svg b/icons/themed/FitSurface.svg new file mode 100644 index 0000000000..322dca7f5d --- /dev/null +++ b/icons/themed/FitSurface.svg @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + New Document + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Geoassembly.svg b/icons/themed/Geoassembly.svg new file mode 100644 index 0000000000..8945ad538f --- /dev/null +++ b/icons/themed/Geoassembly.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Geofeaturegroup.svg b/icons/themed/Geofeaturegroup.svg new file mode 100644 index 0000000000..ffae475da3 --- /dev/null +++ b/icons/themed/Geofeaturegroup.svg @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Git.svg b/icons/themed/Git.svg new file mode 100644 index 0000000000..f2e83cd4f7 --- /dev/null +++ b/icons/themed/Git.svg @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/icons/themed/Group.svg b/icons/themed/Group.svg new file mode 100644 index 0000000000..01f1860a32 --- /dev/null +++ b/icons/themed/Group.svg @@ -0,0 +1,77 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/IFC.svg b/icons/themed/IFC.svg new file mode 100644 index 0000000000..4cf985843b --- /dev/null +++ b/icons/themed/IFC.svg @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IFC_document.svg b/icons/themed/IFC_document.svg new file mode 100644 index 0000000000..a7009c3ca3 --- /dev/null +++ b/icons/themed/IFC_document.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IFC_mesh.svg b/icons/themed/IFC_mesh.svg new file mode 100644 index 0000000000..9735527e98 --- /dev/null +++ b/icons/themed/IFC_mesh.svg @@ -0,0 +1,163 @@ + + + + + + + + + image/svg+xml + + 2005-10-15 + + + Andreas Nilsson + + + + + edit + copy + + + + + Jakub Steiner + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IFC_object.svg b/icons/themed/IFC_object.svg new file mode 100644 index 0000000000..b659790603 --- /dev/null +++ b/icons/themed/IFC_object.svg @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2005-10-15 + + + Andreas Nilsson + + + + + edit + copy + + + + + Jakub Steiner + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IfcBeam.svg b/icons/themed/IfcBeam.svg new file mode 100644 index 0000000000..dc875de32c --- /dev/null +++ b/icons/themed/IfcBeam.svg @@ -0,0 +1,236 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/IfcBuilding.svg b/icons/themed/IfcBuilding.svg new file mode 100644 index 0000000000..e263b24318 --- /dev/null +++ b/icons/themed/IfcBuilding.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Building_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Building_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IfcBuildingStorey.svg b/icons/themed/IfcBuildingStorey.svg new file mode 100644 index 0000000000..f1822bd387 --- /dev/null +++ b/icons/themed/IfcBuildingStorey.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Floor_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IfcColumn.svg b/icons/themed/IfcColumn.svg new file mode 100644 index 0000000000..9a33fa86f1 --- /dev/null +++ b/icons/themed/IfcColumn.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/IfcCovering.svg b/icons/themed/IfcCovering.svg new file mode 100644 index 0000000000..f37981e8ce --- /dev/null +++ b/icons/themed/IfcCovering.svg @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IfcDoor.svg b/icons/themed/IfcDoor.svg new file mode 100644 index 0000000000..514bb537f9 --- /dev/null +++ b/icons/themed/IfcDoor.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Arch_Window + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/IfcFooting.svg b/icons/themed/IfcFooting.svg new file mode 100644 index 0000000000..8370781561 --- /dev/null +++ b/icons/themed/IfcFooting.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/IfcMember.svg b/icons/themed/IfcMember.svg new file mode 100644 index 0000000000..55c7ac6b73 --- /dev/null +++ b/icons/themed/IfcMember.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/IfcPile.svg b/icons/themed/IfcPile.svg new file mode 100644 index 0000000000..8b1c821871 --- /dev/null +++ b/icons/themed/IfcPile.svg @@ -0,0 +1,251 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Arch_Structure + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Structure.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/IfcPlate.svg b/icons/themed/IfcPlate.svg new file mode 100644 index 0000000000..0edbedc21e --- /dev/null +++ b/icons/themed/IfcPlate.svg @@ -0,0 +1,394 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/IfcRailing.svg b/icons/themed/IfcRailing.svg new file mode 100644 index 0000000000..e81ddb1e6e --- /dev/null +++ b/icons/themed/IfcRailing.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/IfcRamp.svg b/icons/themed/IfcRamp.svg new file mode 100644 index 0000000000..8db7c21330 --- /dev/null +++ b/icons/themed/IfcRamp.svg @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Yorik van Havre] + + + Arch_Stairs_Tree + 2013-07-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Stairs_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/IfcRoof.svg b/icons/themed/IfcRoof.svg new file mode 100644 index 0000000000..88f39e3f80 --- /dev/null +++ b/icons/themed/IfcRoof.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Roof_Tree + 2012-05-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Roof_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/IfcSite.svg b/icons/themed/IfcSite.svg new file mode 100644 index 0000000000..b4dc5d2b22 --- /dev/null +++ b/icons/themed/IfcSite.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Site_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Site_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/IfcSlab.svg b/icons/themed/IfcSlab.svg new file mode 100644 index 0000000000..67838915db --- /dev/null +++ b/icons/themed/IfcSlab.svg @@ -0,0 +1,406 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Move.svg + http://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + move + arrows + compass + cross + + + Four equally sized arrow heads at 90° to each other, all joined at the tail + + + + diff --git a/icons/themed/IfcStair.svg b/icons/themed/IfcStair.svg new file mode 100644 index 0000000000..d0f13153ff --- /dev/null +++ b/icons/themed/IfcStair.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Stairs_Tree + 2013-07-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Stairs_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IfcWall.svg b/icons/themed/IfcWall.svg new file mode 100644 index 0000000000..0329ee6913 --- /dev/null +++ b/icons/themed/IfcWall.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/IfcWindow.svg b/icons/themed/IfcWindow.svg new file mode 100644 index 0000000000..b978c5652e --- /dev/null +++ b/icons/themed/IfcWindow.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Window_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Window_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/InTray.svg b/icons/themed/InTray.svg new file mode 100644 index 0000000000..1049847f04 --- /dev/null +++ b/icons/themed/InTray.svg @@ -0,0 +1,84 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/InTray_missed_notifications.svg b/icons/themed/InTray_missed_notifications.svg new file mode 100644 index 0000000000..7b4b1391ae --- /dev/null +++ b/icons/themed/InTray_missed_notifications.svg @@ -0,0 +1,84 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/InspectionWorkbench.svg b/icons/themed/InspectionWorkbench.svg new file mode 100644 index 0000000000..4f50252ff7 --- /dev/null +++ b/icons/themed/InspectionWorkbench.svg @@ -0,0 +1,185 @@ + + + mesh_pipette + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + mesh_pipette + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/mesh_pipette.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + pipette + eyedropper + sample + + + Pipette or eyedropper lit from above + + + [agryson] Alexander Gryson + + + Sat Feb 8 16:10:16 2014 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Invisible.svg b/icons/themed/Invisible.svg new file mode 100644 index 0000000000..ba3c48b2ae --- /dev/null +++ b/icons/themed/Invisible.svg @@ -0,0 +1,71 @@ + + + + + + + + + image/svg+xml + + Path-FaceProfile + 2016-01-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path- + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Link.svg b/icons/themed/Link.svg new file mode 100644 index 0000000000..30e668ebbe --- /dev/null +++ b/icons/themed/Link.svg @@ -0,0 +1,121 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkArray.svg b/icons/themed/LinkArray.svg new file mode 100644 index 0000000000..7e8dc82720 --- /dev/null +++ b/icons/themed/LinkArray.svg @@ -0,0 +1,351 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + diff --git a/icons/themed/LinkArrayOverlay.svg b/icons/themed/LinkArrayOverlay.svg new file mode 100644 index 0000000000..8666012f52 --- /dev/null +++ b/icons/themed/LinkArrayOverlay.svg @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + diff --git a/icons/themed/LinkElement.svg b/icons/themed/LinkElement.svg new file mode 100644 index 0000000000..8dae7330af --- /dev/null +++ b/icons/themed/LinkElement.svg @@ -0,0 +1,355 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + diff --git a/icons/themed/LinkGroup.svg b/icons/themed/LinkGroup.svg new file mode 100644 index 0000000000..891ed0288a --- /dev/null +++ b/icons/themed/LinkGroup.svg @@ -0,0 +1,766 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Assembly_Assembly_Tree + 2013-12-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Assembly/Gui/Resources/icons/Assembly_Assembly_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkImport.svg b/icons/themed/LinkImport.svg new file mode 100644 index 0000000000..cc27a32d38 --- /dev/null +++ b/icons/themed/LinkImport.svg @@ -0,0 +1,130 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkImportAll.svg b/icons/themed/LinkImportAll.svg new file mode 100644 index 0000000000..d9d1bba09f --- /dev/null +++ b/icons/themed/LinkImportAll.svg @@ -0,0 +1,164 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkOverlay.svg b/icons/themed/LinkOverlay.svg new file mode 100644 index 0000000000..5a0811635f --- /dev/null +++ b/icons/themed/LinkOverlay.svg @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Sat Dec 10 18:31:32 2011 +0000 + + + [yorikvanhavre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Array.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Six rectangles in a 2 x 3 linear array + + + rectangle + array + + + + + + diff --git a/icons/themed/LinkReplace.svg b/icons/themed/LinkReplace.svg new file mode 100644 index 0000000000..672b7d7fe1 --- /dev/null +++ b/icons/themed/LinkReplace.svg @@ -0,0 +1,137 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkSelect.svg b/icons/themed/LinkSelect.svg new file mode 100644 index 0000000000..789b2a88dc --- /dev/null +++ b/icons/themed/LinkSelect.svg @@ -0,0 +1,168 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkSelectAll.svg b/icons/themed/LinkSelectAll.svg new file mode 100644 index 0000000000..657b8d180a --- /dev/null +++ b/icons/themed/LinkSelectAll.svg @@ -0,0 +1,152 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkSelectFinal.svg b/icons/themed/LinkSelectFinal.svg new file mode 100644 index 0000000000..912ffe6175 --- /dev/null +++ b/icons/themed/LinkSelectFinal.svg @@ -0,0 +1,194 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkSub.svg b/icons/themed/LinkSub.svg new file mode 100644 index 0000000000..2c97bc2f83 --- /dev/null +++ b/icons/themed/LinkSub.svg @@ -0,0 +1,186 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkSubElement.svg b/icons/themed/LinkSubElement.svg new file mode 100644 index 0000000000..5754830a0c --- /dev/null +++ b/icons/themed/LinkSubElement.svg @@ -0,0 +1,149 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/LinkSubOverlay.svg b/icons/themed/LinkSubOverlay.svg new file mode 100644 index 0000000000..b7479f8cab --- /dev/null +++ b/icons/themed/LinkSubOverlay.svg @@ -0,0 +1,149 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/MacroEditor.svg b/icons/themed/MacroEditor.svg new file mode 100644 index 0000000000..beb18d2231 --- /dev/null +++ b/icons/themed/MacroEditor.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + diff --git a/icons/themed/MacroFolder.svg b/icons/themed/MacroFolder.svg new file mode 100644 index 0000000000..6e8241d2a7 --- /dev/null +++ b/icons/themed/MacroFolder.svg @@ -0,0 +1,211 @@ + +image/svg+xml2015-07-04https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svgFreeCAD LGPL2+https://www.gnu.org/copyleft/lesser.html[agryson] Alexander Gryson diff --git a/icons/themed/Material.svg b/icons/themed/Material.svg new file mode 100644 index 0000000000..7a8b886b4d --- /dev/null +++ b/icons/themed/Material.svg @@ -0,0 +1,589 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/MaterialWorkbench.svg b/icons/themed/MaterialWorkbench.svg new file mode 100644 index 0000000000..b4012193f0 --- /dev/null +++ b/icons/themed/MaterialWorkbench.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Material + 2015-04-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Material.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Material_Edit.svg b/icons/themed/Material_Edit.svg new file mode 100644 index 0000000000..b4012193f0 --- /dev/null +++ b/icons/themed/Material_Edit.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Material + 2015-04-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Material.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Measurement-Angle.svg b/icons/themed/Measurement-Angle.svg new file mode 100644 index 0000000000..2745586513 --- /dev/null +++ b/icons/themed/Measurement-Angle.svg @@ -0,0 +1,66 @@ + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + diff --git a/icons/themed/Measurement-Area.svg b/icons/themed/Measurement-Area.svg new file mode 100644 index 0000000000..66f1ad9dcc --- /dev/null +++ b/icons/themed/Measurement-Area.svg @@ -0,0 +1,188 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + diff --git a/icons/themed/Measurement-CenterOfMass.svg b/icons/themed/Measurement-CenterOfMass.svg new file mode 100644 index 0000000000..3565f195f1 --- /dev/null +++ b/icons/themed/Measurement-CenterOfMass.svg @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + diff --git a/icons/themed/Measurement-Diameter.svg b/icons/themed/Measurement-Diameter.svg new file mode 100644 index 0000000000..9ccc9d85be --- /dev/null +++ b/icons/themed/Measurement-Diameter.svg @@ -0,0 +1,38 @@ + + + + + + diff --git a/icons/themed/Measurement-Distance.svg b/icons/themed/Measurement-Distance.svg new file mode 100644 index 0000000000..a65795b361 --- /dev/null +++ b/icons/themed/Measurement-Distance.svg @@ -0,0 +1,58 @@ + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + diff --git a/icons/themed/Measurement-Group.svg b/icons/themed/Measurement-Group.svg new file mode 100644 index 0000000000..9036b2d329 --- /dev/null +++ b/icons/themed/Measurement-Group.svg @@ -0,0 +1,354 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Measurement-Inertia.svg b/icons/themed/Measurement-Inertia.svg new file mode 100644 index 0000000000..9fd51f748c --- /dev/null +++ b/icons/themed/Measurement-Inertia.svg @@ -0,0 +1,62 @@ + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + diff --git a/icons/themed/Measurement-Position.svg b/icons/themed/Measurement-Position.svg new file mode 100644 index 0000000000..1e2a23787d --- /dev/null +++ b/icons/themed/Measurement-Position.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + diff --git a/icons/themed/Measurement-Radius.svg b/icons/themed/Measurement-Radius.svg new file mode 100644 index 0000000000..c0e877fc6b --- /dev/null +++ b/icons/themed/Measurement-Radius.svg @@ -0,0 +1,58 @@ + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + diff --git a/icons/themed/Measurement-Volume.svg b/icons/themed/Measurement-Volume.svg new file mode 100644 index 0000000000..d770e5ac88 --- /dev/null +++ b/icons/themed/Measurement-Volume.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + diff --git a/icons/themed/MeshFace.svg b/icons/themed/MeshFace.svg new file mode 100644 index 0000000000..322dca7f5d --- /dev/null +++ b/icons/themed/MeshFace.svg @@ -0,0 +1,419 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + New Document + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/MeshPart_CreateFlatFace.svg b/icons/themed/MeshPart_CreateFlatFace.svg new file mode 100644 index 0000000000..43e987798e --- /dev/null +++ b/icons/themed/MeshPart_CreateFlatFace.svg @@ -0,0 +1,284 @@ + + + MeshPart_CreateFlatFace + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + MeshPart_CreateFlatFace + + Cone surface unwrapped + + + + + + + + Cone + plane + red arrow + + + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + 19-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/MeshPart_CreateFlatMesh.svg b/icons/themed/MeshPart_CreateFlatMesh.svg new file mode 100644 index 0000000000..2ea1272ba0 --- /dev/null +++ b/icons/themed/MeshPart_CreateFlatMesh.svg @@ -0,0 +1,298 @@ + + + MeshPart_Create_Flat_Mesh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + MeshPart_Create_Flat_Mesh + + Cone mesh unwrapped + + + + + + + + Cone + mesh + red arrow + + + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + 19-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/MeshPart_CurveOnMesh.svg b/icons/themed/MeshPart_CurveOnMesh.svg new file mode 100644 index 0000000000..6b19f7b75c --- /dev/null +++ b/icons/themed/MeshPart_CurveOnMesh.svg @@ -0,0 +1,2298 @@ + + + MeshPart_CurveOnMesh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + MeshPart_CurveOnMesh + 2020-09-30 + + + [vocx] + + + + + CC-BY-SA 4.0 + + + + + FreeCAD + + + FreeCAD/src/Mod/Surface/Gui/Resources/icons/MeshPart_CurveOnMesh.svg + https://www.freecad.org/wiki/index.php?title=Artwork + A green curved surface that has a thick, red, highlighted curve on top of it, in the middle of the shape. The surface has mesh lines. It is based on the 'Surface_CurveOnMesh' icon, but on green tone, instead of purple. + + + + + + + + + mesh + curve + spline + middle + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/MeshWorkbench.svg b/icons/themed/MeshWorkbench.svg new file mode 100644 index 0000000000..863cfe2c4d --- /dev/null +++ b/icons/themed/MeshWorkbench.svg @@ -0,0 +1,260 @@ + + + MeshWorkbench + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + MeshWorkbench + + + FreeCAD LGPL2+ + + + + + mesh + sphere + workbench + tessellated + + + + Tessellated sphere mesh, lit from top + + + [agryson] Alexander Gryson + + + + + + FreeCAD + + + + + [triplus] + + + Fri Feb 26 23:17:43 2016 +0100 + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/MeshWorkbench.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_AddFacet.svg b/icons/themed/Mesh_AddFacet.svg new file mode 100644 index 0000000000..2a871edba7 --- /dev/null +++ b/icons/themed/Mesh_AddFacet.svg @@ -0,0 +1,178 @@ + + + Mesh_Add_Facet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Add_Facet + Triangular mesh face + + + Icon based on a wmayer' s design + + + + + mesh + triangle + face + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 11-06-2020 + + + [bitacovir] + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_BoundingBox.svg b/icons/themed/Mesh_BoundingBox.svg new file mode 100644 index 0000000000..a44720e66c --- /dev/null +++ b/icons/themed/Mesh_BoundingBox.svg @@ -0,0 +1,238 @@ + + + Mesh_Bounding_Box + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Bounding_Box + Boundingbox of a mesh with red and blue levels + + + + + + + + mesh + triangles + frame + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 21-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_BuildRegularSolid.svg b/icons/themed/Mesh_BuildRegularSolid.svg new file mode 100644 index 0000000000..8fabc7967b --- /dev/null +++ b/icons/themed/Mesh_BuildRegularSolid.svg @@ -0,0 +1,613 @@ + + + + + Mesh_Regular_Solid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Regular_Solid + + A tessellated cube mesh in front of a tessellated cylindrical mesh + + + [agryson] Alexander Gryson + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Regular_Solid.svg + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + mesh + cube + cylinder + tessellated + + + Fri Dec 20 16:28:14 2013 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Cone.svg b/icons/themed/Mesh_Cone.svg new file mode 100644 index 0000000000..92cd9bc374 --- /dev/null +++ b/icons/themed/Mesh_Cone.svg @@ -0,0 +1,265 @@ + + + + + Mesh_Cone + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Cone + + + + [agryson] Alexander Gryson + + + Tessellated conic mesh, lit from top + + + mesh + cone + tessellated + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cone.svg + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + Sat Dec 21 21:54:56 2013 +1100 + + + [jmaustpc] + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_CrossSections.svg b/icons/themed/Mesh_CrossSections.svg new file mode 100644 index 0000000000..3eb0979176 --- /dev/null +++ b/icons/themed/Mesh_CrossSections.svg @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_CrossSections + 2012-12-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_CrossSections.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Cube.svg b/icons/themed/Mesh_Cube.svg new file mode 100644 index 0000000000..f67260fe12 --- /dev/null +++ b/icons/themed/Mesh_Cube.svg @@ -0,0 +1,373 @@ + + + + + Mesh_Cube + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Cube + + Sat Dec 21 21:54:56 2013 +1100 + + + [jmaustpc] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cube.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + mesh + cube + tessellated + + + Tessellated cube mesh, lit from top + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_CursorFillInteractive.svg b/icons/themed/Mesh_CursorFillInteractive.svg new file mode 100644 index 0000000000..e38ae15d3d --- /dev/null +++ b/icons/themed/Mesh_CursorFillInteractive.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_CurvatureInfo.svg b/icons/themed/Mesh_CurvatureInfo.svg new file mode 100644 index 0000000000..daec8af94e --- /dev/null +++ b/icons/themed/Mesh_CurvatureInfo.svg @@ -0,0 +1,259 @@ + + + Mesh_Curvature_Info + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Curvature_Info + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + mesh + colors + pipet + + + Mesh, with colors and pipet + + + Based on a jmaustpc's design + + + 21-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Cylinder.svg b/icons/themed/Mesh_Cylinder.svg new file mode 100644 index 0000000000..fa8eaa9139 --- /dev/null +++ b/icons/themed/Mesh_Cylinder.svg @@ -0,0 +1,370 @@ + + + + + Mesh_Cylinder + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Cylinder + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Cylinder.svg + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Tessellated cylindrical mesh, lit from top + + + mesh + cylinder + tessellated + + + Sat Dec 21 21:54:56 2013 +1100 + + + [jmaustpc] + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Decimating.svg b/icons/themed/Mesh_Decimating.svg new file mode 100644 index 0000000000..7bf1fe4c28 --- /dev/null +++ b/icons/themed/Mesh_Decimating.svg @@ -0,0 +1,206 @@ + + + Mesh_Decimating + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Decimating + Green diamond faces + + + + + + + + mesh + triangles + diamond + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 21-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Difference.svg b/icons/themed/Mesh_Difference.svg new file mode 100644 index 0000000000..47f929124d --- /dev/null +++ b/icons/themed/Mesh_Difference.svg @@ -0,0 +1,261 @@ + + + Mesh_Difference + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Difference + + + [bitacovir] + + + Part_Common + 04-07-2020 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on a [wmayer]'s work + + + + + sphere + mesh + plane + + + A sphere being trimmed by another sphere + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Ellipsoid.svg b/icons/themed/Mesh_Ellipsoid.svg new file mode 100644 index 0000000000..5e04895279 --- /dev/null +++ b/icons/themed/Mesh_Ellipsoid.svg @@ -0,0 +1,401 @@ + + + + + Mesh_Ellipsoid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Ellipsoid + + Sat Dec 21 21:54:56 2013 +1100 + + + [jmaustpc] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Ellipsoid.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + mesh + ellipsoid + tessellated + + + Tessellated ellipsoid mesh, lit from top + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_EvaluateFacet.svg b/icons/themed/Mesh_EvaluateFacet.svg new file mode 100644 index 0000000000..7731c4c45a --- /dev/null +++ b/icons/themed/Mesh_EvaluateFacet.svg @@ -0,0 +1,278 @@ + + + + Mesh_Add_Facet + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Add_Facet + Triangular mesh face + + + Icon based on a wmayer' s design + + + + + mesh + triangle + face + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 11-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_EvaluateSolid.svg b/icons/themed/Mesh_EvaluateSolid.svg new file mode 100644 index 0000000000..aefeedb5fb --- /dev/null +++ b/icons/themed/Mesh_EvaluateSolid.svg @@ -0,0 +1,883 @@ + + + Mesh_Evaluate_Solid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Evaluate_Solid + + + [bitacovir] + + + FemWorkbench + 21-06-2020 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on a triplus' design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Evaluation.svg b/icons/themed/Mesh_Evaluation.svg new file mode 100644 index 0000000000..3b893acc14 --- /dev/null +++ b/icons/themed/Mesh_Evaluation.svg @@ -0,0 +1,274 @@ + + + Mesh_Evaluation + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Evaluation + + + Based on a wmayer's design + + + + 17-06-2020 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + mesh + plane + tool + + + Folded plane, lit from top, with spanner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Export.svg b/icons/themed/Mesh_Export.svg new file mode 100644 index 0000000000..560cdb8f5a --- /dev/null +++ b/icons/themed/Mesh_Export.svg @@ -0,0 +1,414 @@ + + + + + Mesh_Export_Mesh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Export_Mesh + + Tessellated cube mesh with arrow pointing away from document + + + [agryson] Alexander Gryson + + + + + mesh + cube + tessellated + arrow + document + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Export_Mesh.svg + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + Fri Dec 20 16:28:14 2013 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_FillInteractiveHole.svg b/icons/themed/Mesh_FillInteractiveHole.svg new file mode 100644 index 0000000000..0feb45e6c9 --- /dev/null +++ b/icons/themed/Mesh_FillInteractiveHole.svg @@ -0,0 +1,199 @@ + + + + + Mesh_Boundary + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Boundary + A single triangular mesh face with a hole in it + + + [agryson] Alexander Gryson + + + + + mesh + triangle + face + hole + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Boundary.svg + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_FillupHoles.svg b/icons/themed/Mesh_FillupHoles.svg new file mode 100644 index 0000000000..3adf354a55 --- /dev/null +++ b/icons/themed/Mesh_FillupHoles.svg @@ -0,0 +1,165 @@ + + + Mesh_Fill_Up_Holes + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Fill_Up_Holes + Triangular mesh, and faces with holes + + + Icon based on a wmayer' s design + + + + + mesh + triangles + faces + holes + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 11-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_FlipNormals.svg b/icons/themed/Mesh_FlipNormals.svg new file mode 100644 index 0000000000..c61df96d8a --- /dev/null +++ b/icons/themed/Mesh_FlipNormals.svg @@ -0,0 +1,403 @@ + + + + + Mesh_Flip_Normals + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Flip_Normals + + Single mesh face with arrow pointing upwards and a double pointed curved arrow pointing from one side of the face to the other + + + [agryson] Alexander Gryson + + + + + mesh + face + arrow + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Flip_Normals.svg + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + [wmayer] + + + Fri Dec 20 16:28:14 2013 +0100 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_FromPartShape.svg b/icons/themed/Mesh_FromPartShape.svg new file mode 100644 index 0000000000..9ab37ca80d --- /dev/null +++ b/icons/themed/Mesh_FromPartShape.svg @@ -0,0 +1,376 @@ + + + + + Mesh_Mesh_from_Shape + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Mesh_from_Shape + + Solid cube with arrow pointing towards a tessellated cube mesh + + + [agryson] Alexander Gryson + + + + + cube + mesh + solid + convert + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Mesh_from_Shape.svg + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + Sat Dec 14 00:58:58 2013 +1100 + + + [jmaustpc] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_HarmonizeNormals.svg b/icons/themed/Mesh_HarmonizeNormals.svg new file mode 100644 index 0000000000..2ab117631b --- /dev/null +++ b/icons/themed/Mesh_HarmonizeNormals.svg @@ -0,0 +1,489 @@ + + + + + Mesh_Harmonize_Normals + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Harmonize_Normals + + Fri Dec 20 16:28:14 2013 +0100 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Harmonize_Normals.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + mesh + plane + tessellated + normal + arrow + + + Planar tessellated mesh with each face having an arrow pointing upwards + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Import.svg b/icons/themed/Mesh_Import.svg new file mode 100644 index 0000000000..04d92c1e15 --- /dev/null +++ b/icons/themed/Mesh_Import.svg @@ -0,0 +1,384 @@ + + + + + Mesh_Import_Mesh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Import_Mesh + + Fri Dec 20 16:28:14 2013 +0100 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Import_Mesh.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + cube + mesh + tessellated + arrow + file + document + + + Tessellated cube mesh with arrow pointing towards document + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Intersection.svg b/icons/themed/Mesh_Intersection.svg new file mode 100644 index 0000000000..0603e6d164 --- /dev/null +++ b/icons/themed/Mesh_Intersection.svg @@ -0,0 +1,229 @@ + + + Mesh_Intersection + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Intersection + + + [bitacovir] + + + Part_Common + 04-07-2020 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on a wmayer's work + + + + + sphere + mesh + + + Intersection of two spheres + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Merge.svg b/icons/themed/Mesh_Merge.svg new file mode 100644 index 0000000000..39d03f0fa7 --- /dev/null +++ b/icons/themed/Mesh_Merge.svg @@ -0,0 +1,368 @@ + + + Mesh_Merge + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Merge + + + + Based on an Agryson's design + + + Meshes with plus symbol + + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 25-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Pipette.svg b/icons/themed/Mesh_Pipette.svg new file mode 100644 index 0000000000..cc9a6bafc0 --- /dev/null +++ b/icons/themed/Mesh_Pipette.svg @@ -0,0 +1,253 @@ + + + + + mesh_pipette + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + mesh_pipette + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/mesh_pipette.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + pipette + eyedropper + sample + + + Pipette or eyedropper lit from above + + + [agryson] Alexander Gryson + + + Sat Feb 8 16:10:16 2014 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_PolyCut.svg b/icons/themed/Mesh_PolyCut.svg new file mode 100644 index 0000000000..b6e0b70d06 --- /dev/null +++ b/icons/themed/Mesh_PolyCut.svg @@ -0,0 +1,1043 @@ + + + + + Mesh_Cut + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Cut + + https://commons.wikimedia.org/wiki/Tango_icons#/media/File:Edit-cut.svg + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Cut.svg + + + [agryson] Alexander Gryson + + + A tessellated planar mesh in between the blades of an open scissor + + + mesh + plane + tessellated + scissors + cut + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_PolyTrim.svg b/icons/themed/Mesh_PolyTrim.svg new file mode 100644 index 0000000000..5985ccbc22 --- /dev/null +++ b/icons/themed/Mesh_PolyTrim.svg @@ -0,0 +1,397 @@ + + + Mesh_Poly_Trim + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Poly_Trim + + + + [bitacovir] + + + Arch_CutPlane + 2020-06-23 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + + + + + + Mesh object being cut by a trimming line + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_RemeshGmsh.svg b/icons/themed/Mesh_RemeshGmsh.svg new file mode 100644 index 0000000000..7f98078cc1 --- /dev/null +++ b/icons/themed/Mesh_RemeshGmsh.svg @@ -0,0 +1,207 @@ + + + Mesh_Remesh_Gmsh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Remesh_Gmsh + + + + + + + + + + prism + gmsh + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 26-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_RemoveCompByHand.svg b/icons/themed/Mesh_RemoveCompByHand.svg new file mode 100644 index 0000000000..aacb1eb6da --- /dev/null +++ b/icons/themed/Mesh_RemoveCompByHand.svg @@ -0,0 +1,220 @@ + + + Mesh_Remove_Comp_by_Hand + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Mesh_Remove_Comp_by_Hand + Triangular mesh, faces and plus symbol + + + Icon based on a wmayer' s design + + + + + mesh + triangles + faces + cross + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 12-06-2020 + + + [bitacovir] + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_RemoveComponents.svg b/icons/themed/Mesh_RemoveComponents.svg new file mode 100644 index 0000000000..b76ae5022b --- /dev/null +++ b/icons/themed/Mesh_RemoveComponents.svg @@ -0,0 +1,358 @@ + + + + + Mesh_Remove_Components + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Remove_Components + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Remove_Components.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + mesh + red cross + delete + remove + + + Two sets of mesh triangles, one of which is marked with a red cross + Fri Dec 20 16:28:14 2013 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Scale.svg b/icons/themed/Mesh_Scale.svg new file mode 100644 index 0000000000..94ecbb5ffc --- /dev/null +++ b/icons/themed/Mesh_Scale.svg @@ -0,0 +1,248 @@ + + + Mesh_Scale + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Scale + + 12-06-2020 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + Based on a wmayer's design + + + + + green square + arrow + dotted line + + + A small square in the bottom left corner of a large dotted box ith an arrow pointing from the top left corner of the inner box to the top left corner of the + + + + diff --git a/icons/themed/Mesh_SectionByPlane.svg b/icons/themed/Mesh_SectionByPlane.svg new file mode 100644 index 0000000000..002ea11f89 --- /dev/null +++ b/icons/themed/Mesh_SectionByPlane.svg @@ -0,0 +1,351 @@ + + + Mesh_Section_by_Plane + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Section_by_Plane + + 04-07-2020 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + sphere + mesh + plane + red line + + + Red section of a sphere by a plane + + + Based on a jmaustpc's work + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Segmentation.svg b/icons/themed/Mesh_Segmentation.svg new file mode 100644 index 0000000000..a49ecbff19 --- /dev/null +++ b/icons/themed/Mesh_Segmentation.svg @@ -0,0 +1,272 @@ + + + Mesh_Segmentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Segmentation + + 19-06-2020 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + mesh + sphere + + + Incomplete sphere mesh + + + Based on a jmaustpc's design + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_SegmentationBestFit.svg b/icons/themed/Mesh_SegmentationBestFit.svg new file mode 100644 index 0000000000..3528dee355 --- /dev/null +++ b/icons/themed/Mesh_SegmentationBestFit.svg @@ -0,0 +1,352 @@ + + + Mesh_Segmentation_Best_Fit + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Segmentation_Best_Fit + + 05-07-2020 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + mesh puzzle + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Smoothing.svg b/icons/themed/Mesh_Smoothing.svg new file mode 100644 index 0000000000..fc8d45b41d --- /dev/null +++ b/icons/themed/Mesh_Smoothing.svg @@ -0,0 +1,254 @@ + + + Mesh_Smoothing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Smoothing + + 20-06-2020 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + mesh + apple + smooth + + + Green smooth apple, lit from top + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Sphere.svg b/icons/themed/Mesh_Sphere.svg new file mode 100644 index 0000000000..0a8827a616 --- /dev/null +++ b/icons/themed/Mesh_Sphere.svg @@ -0,0 +1,328 @@ + + + + + Mesh_Sphere + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Sphere + + Sat Dec 21 21:54:56 2013 +1100 + + + [jmaustpc] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Sphere.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + mesh + sphere + tessellated + + + Tessellated sphere mesh, lit from top + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_SplitComponents.svg b/icons/themed/Mesh_SplitComponents.svg new file mode 100644 index 0000000000..ef78a5941a --- /dev/null +++ b/icons/themed/Mesh_SplitComponents.svg @@ -0,0 +1,128 @@ + + + Mesh_SplitComponents + + + + + image/svg+xml + + Mesh_SplitComponents + + + [wmayer] + + + Arch_SplitMesh + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Torus.svg b/icons/themed/Mesh_Torus.svg new file mode 100644 index 0000000000..fa443049e5 --- /dev/null +++ b/icons/themed/Mesh_Torus.svg @@ -0,0 +1,388 @@ + + + + + Mesh_Torus + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Torus + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/RegularSolids/Mesh_Torus.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + Tessellated torus mesh, lit from top + + + + mesh + torus + tessellated + + + Sat Dec 21 21:54:56 2013 +1100 + + + [jmaustpc] + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Tree.svg b/icons/themed/Mesh_Tree.svg new file mode 100644 index 0000000000..2ccfd07ea8 --- /dev/null +++ b/icons/themed/Mesh_Tree.svg @@ -0,0 +1,275 @@ + + + + + Mesh_Tree + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Tree + + + [agryson] Alexander Gryson + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh._Tree.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + mesh + plane + tessellated + + + Tessellated folded plane, lit from top + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Tree_Curvature_Plot.svg b/icons/themed/Mesh_Tree_Curvature_Plot.svg new file mode 100644 index 0000000000..9cd8eacfce --- /dev/null +++ b/icons/themed/Mesh_Tree_Curvature_Plot.svg @@ -0,0 +1,222 @@ + + + + + Mesh_Tree_Curvature_Plot + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Tree_Curvature_Plot + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Tree_Curvature_Plot.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + mesh + color + plot + diamond + + + Diamond Shaped mesh with color coded faces + Fri Dec 20 16:28:14 2013 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_TrimByPlane.svg b/icons/themed/Mesh_TrimByPlane.svg new file mode 100644 index 0000000000..22a6765105 --- /dev/null +++ b/icons/themed/Mesh_TrimByPlane.svg @@ -0,0 +1,357 @@ + + + Mesh_ Trim_by_Plane + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_ Trim_by_Plane + + + + [bitacovir] + + + Arch_CutPlane + 24-06-2020 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + + + Based on a wood galaxy's design + + + + + mesh + red plane + + + Mesh, trimmed with a plane + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_Union.svg b/icons/themed/Mesh_Union.svg new file mode 100644 index 0000000000..1dceec5992 --- /dev/null +++ b/icons/themed/Mesh_Union.svg @@ -0,0 +1,286 @@ + + + Mesh_Union + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Union + + + [bitacovir] + + + Part_Fuse + 10-07-2020 + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + sphere + mesh + + + Union of two spheres + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Mesh_VertexCurvature.svg b/icons/themed/Mesh_VertexCurvature.svg new file mode 100644 index 0000000000..782689f3ea --- /dev/null +++ b/icons/themed/Mesh_VertexCurvature.svg @@ -0,0 +1,227 @@ + + + + + Mesh_Curvature_Plot + + + + + + + + + + + + + + + + + + + image/svg+xml + + Mesh_Curvature_Plot + + + + [agryson] Alexander Gryson + + + Mesh with color coded faces and a multicolored bar shaped legend + + + mesh + color + plot + + + https://www.freecad.org/wiki/index.php?title=Artwork + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/Mesh_Curvature_Plot.svg + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + [wmayer] + + + Fri Dec 20 16:28:14 2013 +0100 + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/NavigationBlender_dark.svg b/icons/themed/NavigationBlender_dark.svg new file mode 100644 index 0000000000..5c5c8ecaa8 --- /dev/null +++ b/icons/themed/NavigationBlender_dark.svg @@ -0,0 +1,27 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/NavigationBlender_light.svg b/icons/themed/NavigationBlender_light.svg new file mode 100644 index 0000000000..e538cdd4bf --- /dev/null +++ b/icons/themed/NavigationBlender_light.svg @@ -0,0 +1,28 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/NavigationCADAlt.svg b/icons/themed/NavigationCADAlt.svg new file mode 100644 index 0000000000..80c0ebe799 --- /dev/null +++ b/icons/themed/NavigationCADAlt.svg @@ -0,0 +1,16 @@ + + + + + + + image/svg+xml + + + + + + + + + diff --git a/icons/themed/NavigationCAD_dark.svg b/icons/themed/NavigationCAD_dark.svg new file mode 100644 index 0000000000..d11c9c2358 --- /dev/null +++ b/icons/themed/NavigationCAD_dark.svg @@ -0,0 +1,17 @@ + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/NavigationCAD_light.svg b/icons/themed/NavigationCAD_light.svg new file mode 100644 index 0000000000..03e355cb7f --- /dev/null +++ b/icons/themed/NavigationCAD_light.svg @@ -0,0 +1,16 @@ + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/NavigationGesture_dark.svg b/icons/themed/NavigationGesture_dark.svg new file mode 100644 index 0000000000..198ce41f0d --- /dev/null +++ b/icons/themed/NavigationGesture_dark.svg @@ -0,0 +1,22 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/NavigationGesture_light.svg b/icons/themed/NavigationGesture_light.svg new file mode 100644 index 0000000000..99eb27e2b7 --- /dev/null +++ b/icons/themed/NavigationGesture_light.svg @@ -0,0 +1,21 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/NavigationMayaGesture_dark.svg b/icons/themed/NavigationMayaGesture_dark.svg new file mode 100644 index 0000000000..ba1b723362 --- /dev/null +++ b/icons/themed/NavigationMayaGesture_dark.svg @@ -0,0 +1,18 @@ + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/NavigationMayaGesture_light.svg b/icons/themed/NavigationMayaGesture_light.svg new file mode 100644 index 0000000000..53357798ca --- /dev/null +++ b/icons/themed/NavigationMayaGesture_light.svg @@ -0,0 +1,17 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/NavigationOpenCascade_dark.svg b/icons/themed/NavigationOpenCascade_dark.svg new file mode 100644 index 0000000000..69a0eda43b --- /dev/null +++ b/icons/themed/NavigationOpenCascade_dark.svg @@ -0,0 +1,18 @@ + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/NavigationOpenCascade_light.svg b/icons/themed/NavigationOpenCascade_light.svg new file mode 100644 index 0000000000..74bc3f2c07 --- /dev/null +++ b/icons/themed/NavigationOpenCascade_light.svg @@ -0,0 +1,17 @@ + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/NavigationOpenInventor_dark.svg b/icons/themed/NavigationOpenInventor_dark.svg new file mode 100644 index 0000000000..32d4fbf95d --- /dev/null +++ b/icons/themed/NavigationOpenInventor_dark.svg @@ -0,0 +1,19 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/NavigationOpenInventor_light.svg b/icons/themed/NavigationOpenInventor_light.svg new file mode 100644 index 0000000000..3f4e362198 --- /dev/null +++ b/icons/themed/NavigationOpenInventor_light.svg @@ -0,0 +1,18 @@ + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/NavigationOpenSCAD_dark.svg b/icons/themed/NavigationOpenSCAD_dark.svg new file mode 100644 index 0000000000..5049eff7c3 --- /dev/null +++ b/icons/themed/NavigationOpenSCAD_dark.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + OS + diff --git a/icons/themed/NavigationOpenSCAD_light.svg b/icons/themed/NavigationOpenSCAD_light.svg new file mode 100644 index 0000000000..d6900e002c --- /dev/null +++ b/icons/themed/NavigationOpenSCAD_light.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + OS + diff --git a/icons/themed/NavigationRevit_dark.svg b/icons/themed/NavigationRevit_dark.svg new file mode 100644 index 0000000000..0695d47795 --- /dev/null +++ b/icons/themed/NavigationRevit_dark.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/themed/NavigationRevit_light.svg b/icons/themed/NavigationRevit_light.svg new file mode 100644 index 0000000000..2716cffa05 --- /dev/null +++ b/icons/themed/NavigationRevit_light.svg @@ -0,0 +1,21 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/NavigationSiemensNX_dark.svg b/icons/themed/NavigationSiemensNX_dark.svg new file mode 100644 index 0000000000..023ca56648 --- /dev/null +++ b/icons/themed/NavigationSiemensNX_dark.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + NX + diff --git a/icons/themed/NavigationSiemensNX_light.svg b/icons/themed/NavigationSiemensNX_light.svg new file mode 100644 index 0000000000..0064477a86 --- /dev/null +++ b/icons/themed/NavigationSiemensNX_light.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + NX + diff --git a/icons/themed/NavigationSolidWorks_dark.svg b/icons/themed/NavigationSolidWorks_dark.svg new file mode 100644 index 0000000000..b1ddec591e --- /dev/null +++ b/icons/themed/NavigationSolidWorks_dark.svg @@ -0,0 +1,76 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + SW + diff --git a/icons/themed/NavigationSolidWorks_light.svg b/icons/themed/NavigationSolidWorks_light.svg new file mode 100644 index 0000000000..447a128cf9 --- /dev/null +++ b/icons/themed/NavigationSolidWorks_light.svg @@ -0,0 +1,72 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + SW + diff --git a/icons/themed/NavigationTinkerCAD_dark.svg b/icons/themed/NavigationTinkerCAD_dark.svg new file mode 100644 index 0000000000..f5aa43ba39 --- /dev/null +++ b/icons/themed/NavigationTinkerCAD_dark.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + T + diff --git a/icons/themed/NavigationTinkerCAD_light.svg b/icons/themed/NavigationTinkerCAD_light.svg new file mode 100644 index 0000000000..6b4101c00f --- /dev/null +++ b/icons/themed/NavigationTinkerCAD_light.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + T + diff --git a/icons/themed/NavigationTouchpad_dark.svg b/icons/themed/NavigationTouchpad_dark.svg new file mode 100644 index 0000000000..81872f170d --- /dev/null +++ b/icons/themed/NavigationTouchpad_dark.svg @@ -0,0 +1,18 @@ + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/NavigationTouchpad_light.svg b/icons/themed/NavigationTouchpad_light.svg new file mode 100644 index 0000000000..d8dbc05d47 --- /dev/null +++ b/icons/themed/NavigationTouchpad_light.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/themed/NavigationUndefined.svg b/icons/themed/NavigationUndefined.svg new file mode 100644 index 0000000000..b9d1b1c197 --- /dev/null +++ b/icons/themed/NavigationUndefined.svg @@ -0,0 +1,17 @@ + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/Navigation_Gesture_PanTouch.svg b/icons/themed/Navigation_Gesture_PanTouch.svg new file mode 100644 index 0000000000..4529204db1 --- /dev/null +++ b/icons/themed/Navigation_Gesture_PanTouch.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Gesture_PanTouchAlt.svg b/icons/themed/Navigation_Gesture_PanTouchAlt.svg new file mode 100644 index 0000000000..f3ebf4c95d --- /dev/null +++ b/icons/themed/Navigation_Gesture_PanTouchAlt.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Gesture_RotateTouch.svg b/icons/themed/Navigation_Gesture_RotateTouch.svg new file mode 100644 index 0000000000..8d808e54b6 --- /dev/null +++ b/icons/themed/Navigation_Gesture_RotateTouch.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Gesture_SelectTouch.svg b/icons/themed/Navigation_Gesture_SelectTouch.svg new file mode 100644 index 0000000000..7cc4bd82ff --- /dev/null +++ b/icons/themed/Navigation_Gesture_SelectTouch.svg @@ -0,0 +1,26 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Gesture_TiltTouch.svg b/icons/themed/Navigation_Gesture_TiltTouch.svg new file mode 100644 index 0000000000..f2991a5e51 --- /dev/null +++ b/icons/themed/Navigation_Gesture_TiltTouch.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Gesture_ZoomTouch.svg b/icons/themed/Navigation_Gesture_ZoomTouch.svg new file mode 100644 index 0000000000..687fec460a --- /dev/null +++ b/icons/themed/Navigation_Gesture_ZoomTouch.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_AltLeft.svg b/icons/themed/Navigation_Mouse_AltLeft.svg new file mode 100644 index 0000000000..d27e8e601d --- /dev/null +++ b/icons/themed/Navigation_Mouse_AltLeft.svg @@ -0,0 +1,39 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_AltLeftRight.svg b/icons/themed/Navigation_Mouse_AltLeftRight.svg new file mode 100644 index 0000000000..2a613cd212 --- /dev/null +++ b/icons/themed/Navigation_Mouse_AltLeftRight.svg @@ -0,0 +1,39 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_AltMiddle.svg b/icons/themed/Navigation_Mouse_AltMiddle.svg new file mode 100644 index 0000000000..e64d6d9184 --- /dev/null +++ b/icons/themed/Navigation_Mouse_AltMiddle.svg @@ -0,0 +1,37 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_AltMove.svg b/icons/themed/Navigation_Mouse_AltMove.svg new file mode 100644 index 0000000000..244b0bf3b1 --- /dev/null +++ b/icons/themed/Navigation_Mouse_AltMove.svg @@ -0,0 +1,57 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_AltRight.svg b/icons/themed/Navigation_Mouse_AltRight.svg new file mode 100644 index 0000000000..e076a5cca3 --- /dev/null +++ b/icons/themed/Navigation_Mouse_AltRight.svg @@ -0,0 +1,39 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_CtrlLeft.svg b/icons/themed/Navigation_Mouse_CtrlLeft.svg new file mode 100644 index 0000000000..05eef8ffa3 --- /dev/null +++ b/icons/themed/Navigation_Mouse_CtrlLeft.svg @@ -0,0 +1,38 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_CtrlMiddle.svg b/icons/themed/Navigation_Mouse_CtrlMiddle.svg new file mode 100644 index 0000000000..4d3433c501 --- /dev/null +++ b/icons/themed/Navigation_Mouse_CtrlMiddle.svg @@ -0,0 +1,36 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_CtrlRight.svg b/icons/themed/Navigation_Mouse_CtrlRight.svg new file mode 100644 index 0000000000..f075cc33b4 --- /dev/null +++ b/icons/themed/Navigation_Mouse_CtrlRight.svg @@ -0,0 +1,38 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_Left.svg b/icons/themed/Navigation_Mouse_Left.svg new file mode 100644 index 0000000000..ef628da125 --- /dev/null +++ b/icons/themed/Navigation_Mouse_Left.svg @@ -0,0 +1,28 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_LeftMove.svg b/icons/themed/Navigation_Mouse_LeftMove.svg new file mode 100644 index 0000000000..614126b7e0 --- /dev/null +++ b/icons/themed/Navigation_Mouse_LeftMove.svg @@ -0,0 +1,48 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_LeftRight.svg b/icons/themed/Navigation_Mouse_LeftRight.svg new file mode 100644 index 0000000000..24b8234b7e --- /dev/null +++ b/icons/themed/Navigation_Mouse_LeftRight.svg @@ -0,0 +1,28 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_Middle.svg b/icons/themed/Navigation_Mouse_Middle.svg new file mode 100644 index 0000000000..655ec0e18f --- /dev/null +++ b/icons/themed/Navigation_Mouse_Middle.svg @@ -0,0 +1,26 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_MiddleLeft.svg b/icons/themed/Navigation_Mouse_MiddleLeft.svg new file mode 100644 index 0000000000..d118770bd2 --- /dev/null +++ b/icons/themed/Navigation_Mouse_MiddleLeft.svg @@ -0,0 +1,34 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_MiddleRight.svg b/icons/themed/Navigation_Mouse_MiddleRight.svg new file mode 100644 index 0000000000..4d87408f47 --- /dev/null +++ b/icons/themed/Navigation_Mouse_MiddleRight.svg @@ -0,0 +1,34 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_Right.svg b/icons/themed/Navigation_Mouse_Right.svg new file mode 100644 index 0000000000..d2fddf0054 --- /dev/null +++ b/icons/themed/Navigation_Mouse_Right.svg @@ -0,0 +1,28 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_Scroll.svg b/icons/themed/Navigation_Mouse_Scroll.svg new file mode 100644 index 0000000000..9e5bed4289 --- /dev/null +++ b/icons/themed/Navigation_Mouse_Scroll.svg @@ -0,0 +1,31 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_ShiftCtrlMove.svg b/icons/themed/Navigation_Mouse_ShiftCtrlMove.svg new file mode 100644 index 0000000000..706ff3b352 --- /dev/null +++ b/icons/themed/Navigation_Mouse_ShiftCtrlMove.svg @@ -0,0 +1,51 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_ShiftLeft.svg b/icons/themed/Navigation_Mouse_ShiftLeft.svg new file mode 100644 index 0000000000..cf66098604 --- /dev/null +++ b/icons/themed/Navigation_Mouse_ShiftLeft.svg @@ -0,0 +1,39 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_ShiftMiddle.svg b/icons/themed/Navigation_Mouse_ShiftMiddle.svg new file mode 100644 index 0000000000..18b6a247e5 --- /dev/null +++ b/icons/themed/Navigation_Mouse_ShiftMiddle.svg @@ -0,0 +1,39 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Mouse_ShiftMove.svg b/icons/themed/Navigation_Mouse_ShiftMove.svg new file mode 100644 index 0000000000..5a3bd80454 --- /dev/null +++ b/icons/themed/Navigation_Mouse_ShiftMove.svg @@ -0,0 +1,61 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Touchpad_AltTouch.svg b/icons/themed/Navigation_Touchpad_AltTouch.svg new file mode 100644 index 0000000000..dbf3aa9ff1 --- /dev/null +++ b/icons/themed/Navigation_Touchpad_AltTouch.svg @@ -0,0 +1,57 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Touchpad_Left.svg b/icons/themed/Navigation_Touchpad_Left.svg new file mode 100644 index 0000000000..f024738cff --- /dev/null +++ b/icons/themed/Navigation_Touchpad_Left.svg @@ -0,0 +1,25 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Touchpad_ShiftCtrlTouch.svg b/icons/themed/Navigation_Touchpad_ShiftCtrlTouch.svg new file mode 100644 index 0000000000..50b90078f6 --- /dev/null +++ b/icons/themed/Navigation_Touchpad_ShiftCtrlTouch.svg @@ -0,0 +1,49 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Touchpad_ShiftLeftTouch.svg b/icons/themed/Navigation_Touchpad_ShiftLeftTouch.svg new file mode 100644 index 0000000000..f9d0b26f93 --- /dev/null +++ b/icons/themed/Navigation_Touchpad_ShiftLeftTouch.svg @@ -0,0 +1,59 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Navigation_Touchpad_ShiftTouch.svg b/icons/themed/Navigation_Touchpad_ShiftTouch.svg new file mode 100644 index 0000000000..46193dd3c0 --- /dev/null +++ b/icons/themed/Navigation_Touchpad_ShiftTouch.svg @@ -0,0 +1,61 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCADWorkbench.svg b/icons/themed/OpenSCADWorkbench.svg new file mode 100644 index 0000000000..a3e410a9d7 --- /dev/null +++ b/icons/themed/OpenSCADWorkbench.svg @@ -0,0 +1,534 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [triplus] + + + OpenSCADWorkbench + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCADWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_AddOpenSCADElement.svg b/icons/themed/OpenSCAD_AddOpenSCADElement.svg new file mode 100644 index 0000000000..84233b43fd --- /dev/null +++ b/icons/themed/OpenSCAD_AddOpenSCADElement.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_AddOpenSCADElement + 2012-07-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_AddOpenSCADElement.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_ColorCodeShape.svg b/icons/themed/OpenSCAD_ColorCodeShape.svg new file mode 100644 index 0000000000..592a5ede89 --- /dev/null +++ b/icons/themed/OpenSCAD_ColorCodeShape.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_ColorCodeShape + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_ColorCodeShape.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_Edgestofaces.svg b/icons/themed/OpenSCAD_Edgestofaces.svg new file mode 100644 index 0000000000..e16f2fc433 --- /dev/null +++ b/icons/themed/OpenSCAD_Edgestofaces.svg @@ -0,0 +1,151 @@ + + + OpenSCAD_Edgestofaces + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + OpenSCAD_Edgestofaces + + + + + + + + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 12-01-2021 + + + [bitacovir] + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_ExpandPlacements.svg b/icons/themed/OpenSCAD_ExpandPlacements.svg new file mode 100644 index 0000000000..4f711aaa86 --- /dev/null +++ b/icons/themed/OpenSCAD_ExpandPlacements.svg @@ -0,0 +1,186 @@ + + + OpenSCAD_ExpandPlacements + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + OpenSCAD_ExpandPlacements + + + + + + + + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + 12-01-2021 + + + [bitacovir] + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_Explode_Group.svg b/icons/themed/OpenSCAD_Explode_Group.svg new file mode 100644 index 0000000000..ca946e8602 --- /dev/null +++ b/icons/themed/OpenSCAD_Explode_Group.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_Explode_Group + 2014-02-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_Explode_Group.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_Hull.svg b/icons/themed/OpenSCAD_Hull.svg new file mode 100644 index 0000000000..2d62e2b516 --- /dev/null +++ b/icons/themed/OpenSCAD_Hull.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Keith Sloan] + + + OpenSCAD_Hull + 2013-10-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_Hull.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_IncreaseToleranceFeature.svg b/icons/themed/OpenSCAD_IncreaseToleranceFeature.svg new file mode 100644 index 0000000000..0055386563 --- /dev/null +++ b/icons/themed/OpenSCAD_IncreaseToleranceFeature.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_IncreaseToleranceFeature + 2014-04-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_IncreaseTolerance + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_MeshBooleans.svg b/icons/themed/OpenSCAD_MeshBooleans.svg new file mode 100644 index 0000000000..7644688a63 --- /dev/null +++ b/icons/themed/OpenSCAD_MeshBooleans.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Keith Sloan] + + + OpenSCAD_MeshBooleans + 2013-10-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_MeshBooleans.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_Minkowski.svg b/icons/themed/OpenSCAD_Minkowski.svg new file mode 100644 index 0000000000..459745be37 --- /dev/null +++ b/icons/themed/OpenSCAD_Minkowski.svg @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Keith Sloan] + + + OpenSCAD_Minkowski + 2013-10-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_Minkowski.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_MirrorMeshFeature.svg b/icons/themed/OpenSCAD_MirrorMeshFeature.svg new file mode 100644 index 0000000000..bd06d12ddf --- /dev/null +++ b/icons/themed/OpenSCAD_MirrorMeshFeature.svg @@ -0,0 +1,433 @@ + + + OpenSCAD_MirrorMeshFeature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + OpenSCAD_MirrorMeshFeature + + + [bitacovir] + + + Part_Mirror + 2021/01/05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Work based on a design made by [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_RefineShapeFeature.svg b/icons/themed/OpenSCAD_RefineShapeFeature.svg new file mode 100644 index 0000000000..c2ed6f3e21 --- /dev/null +++ b/icons/themed/OpenSCAD_RefineShapeFeature.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RefineShapeFeature + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RefineShape + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_RemoveSubtree.svg b/icons/themed/OpenSCAD_RemoveSubtree.svg new file mode 100644 index 0000000000..1e86ae8f29 --- /dev/null +++ b/icons/themed/OpenSCAD_RemoveSubtree.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_ReplaceObject.svg b/icons/themed/OpenSCAD_ReplaceObject.svg new file mode 100644 index 0000000000..13336e36f0 --- /dev/null +++ b/icons/themed/OpenSCAD_ReplaceObject.svg @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_ReplaceObject + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_ReplaceObject.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_ResizeMeshFeature.svg b/icons/themed/OpenSCAD_ResizeMeshFeature.svg new file mode 100644 index 0000000000..b797d94762 --- /dev/null +++ b/icons/themed/OpenSCAD_ResizeMeshFeature.svg @@ -0,0 +1,331 @@ + + + OpenSCAD_ResizeMeshFeature + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + OpenSCAD_ResizeMeshFeature + + + [bitacovir] + + + OpenSCAD_MeshBooleans + 12-01-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/OpenSCAD_ScaleMeshFeature.svg b/icons/themed/OpenSCAD_ScaleMeshFeature.svg new file mode 100644 index 0000000000..8757830f77 --- /dev/null +++ b/icons/themed/OpenSCAD_ScaleMeshFeature.svg @@ -0,0 +1,287 @@ + + + OpenSCAD_ScaleMeshFeature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + OpenSCAD_ScaleMeshFeature + + 12-01-2021 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + Based on a wmayer's design + + + + + green square + arrow + dotted line + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Param_Bool.svg b/icons/themed/Param_Bool.svg new file mode 100644 index 0000000000..05f498bce3 --- /dev/null +++ b/icons/themed/Param_Bool.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/Param_Float.svg b/icons/themed/Param_Float.svg new file mode 100644 index 0000000000..97498a17ab --- /dev/null +++ b/icons/themed/Param_Float.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/Param_Int.svg b/icons/themed/Param_Int.svg new file mode 100644 index 0000000000..b7124f08d0 --- /dev/null +++ b/icons/themed/Param_Int.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/Param_Text.svg b/icons/themed/Param_Text.svg new file mode 100644 index 0000000000..7bc9e66c2a --- /dev/null +++ b/icons/themed/Param_Text.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/Param_UInt.svg b/icons/themed/Param_UInt.svg new file mode 100644 index 0000000000..1d26594ba9 --- /dev/null +++ b/icons/themed/Param_UInt.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/PartDesignWorkbench.svg b/icons/themed/PartDesignWorkbench.svg new file mode 100644 index 0000000000..0b9294dfe3 --- /dev/null +++ b/icons/themed/PartDesignWorkbench.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveBox.svg b/icons/themed/PartDesign_AdditiveBox.svg new file mode 100644 index 0000000000..812e3aabd4 --- /dev/null +++ b/icons/themed/PartDesign_AdditiveBox.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Box + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveCone.svg b/icons/themed/PartDesign_AdditiveCone.svg new file mode 100644 index 0000000000..9f50d89e72 --- /dev/null +++ b/icons/themed/PartDesign_AdditiveCone.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Cone + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Cone.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveCylinder.svg b/icons/themed/PartDesign_AdditiveCylinder.svg new file mode 100644 index 0000000000..0b2ac915fa --- /dev/null +++ b/icons/themed/PartDesign_AdditiveCylinder.svg @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Cylinder + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveEllipsoid.svg b/icons/themed/PartDesign_AdditiveEllipsoid.svg new file mode 100644 index 0000000000..5285facdd2 --- /dev/null +++ b/icons/themed/PartDesign_AdditiveEllipsoid.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Ellipsoid + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Ellipsoid.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveHelix.svg b/icons/themed/PartDesign_AdditiveHelix.svg new file mode 100644 index 0000000000..016c6b3e7d --- /dev/null +++ b/icons/themed/PartDesign_AdditiveHelix.svg @@ -0,0 +1,1456 @@ + + + PartDesign_Additive_Helix + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + PartDesign_Additive_Helix + + + bitacovir, davidosterberg + + + PartDesign_Revolution + 2020/12/30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveLoft.svg b/icons/themed/PartDesign_AdditiveLoft.svg new file mode 100644 index 0000000000..b474d3354c --- /dev/null +++ b/icons/themed/PartDesign_AdditiveLoft.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Loft + 2015-06-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Loft.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditivePipe.svg b/icons/themed/PartDesign_AdditivePipe.svg new file mode 100644 index 0000000000..a1178d44b3 --- /dev/null +++ b/icons/themed/PartDesign_AdditivePipe.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Pipe + 2015-05-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Pipe.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditivePrism.svg b/icons/themed/PartDesign_AdditivePrism.svg new file mode 100644 index 0000000000..f4475610eb --- /dev/null +++ b/icons/themed/PartDesign_AdditivePrism.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Prism + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Prism.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveSphere.svg b/icons/themed/PartDesign_AdditiveSphere.svg new file mode 100644 index 0000000000..1a00cf9eb9 --- /dev/null +++ b/icons/themed/PartDesign_AdditiveSphere.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Sphere + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Sphere.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveTorus.svg b/icons/themed/PartDesign_AdditiveTorus.svg new file mode 100644 index 0000000000..72c414a754 --- /dev/null +++ b/icons/themed/PartDesign_AdditiveTorus.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Torus + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Torus.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_AdditiveWedge.svg b/icons/themed/PartDesign_AdditiveWedge.svg new file mode 100644 index 0000000000..b033e560e3 --- /dev/null +++ b/icons/themed/PartDesign_AdditiveWedge.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Additive_Wedge + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Additive_Wedge.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_BaseFeature.svg b/icons/themed/PartDesign_BaseFeature.svg new file mode 100644 index 0000000000..d78af23554 --- /dev/null +++ b/icons/themed/PartDesign_BaseFeature.svg @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [triplus] + + + PartDesignWorkbench + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesignWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Body.svg b/icons/themed/PartDesign_Body.svg new file mode 100644 index 0000000000..0b9294dfe3 --- /dev/null +++ b/icons/themed/PartDesign_Body.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Boolean.svg b/icons/themed/PartDesign_Boolean.svg new file mode 100644 index 0000000000..29b1086182 --- /dev/null +++ b/icons/themed/PartDesign_Boolean.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [jrheinlaender] + + + PartDesign_Boolean + 2013-05-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Boolean.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Chamfer.svg b/icons/themed/PartDesign_Chamfer.svg new file mode 100644 index 0000000000..4de3946fc1 --- /dev/null +++ b/icons/themed/PartDesign_Chamfer.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + PartDesign_Chamfer + 2012-09-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Chamfer.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Clone.svg b/icons/themed/PartDesign_Clone.svg new file mode 100644 index 0000000000..52a9f91577 --- /dev/null +++ b/icons/themed/PartDesign_Clone.svg @@ -0,0 +1,553 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Fri May 4 19:21:54 2012 -0300 + + + [Yorik van Havre] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Clone.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + square + square + + + Two identical orange squares with dark outlines diagonally stacked from left to right and offset of each at the right corner of the leftmost bottom one + + + + diff --git a/icons/themed/PartDesign_CoordinateSystem.svg b/icons/themed/PartDesign_CoordinateSystem.svg new file mode 100644 index 0000000000..b890199826 --- /dev/null +++ b/icons/themed/PartDesign_CoordinateSystem.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_CoordinateSystem + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_CoordinateSystem.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Draft.svg b/icons/themed/PartDesign_Draft.svg new file mode 100644 index 0000000000..a380a9bd3a --- /dev/null +++ b/icons/themed/PartDesign_Draft.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_Draft + 2012-11-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Draft.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Fillet.svg b/icons/themed/PartDesign_Fillet.svg new file mode 100644 index 0000000000..f3f3c79119 --- /dev/null +++ b/icons/themed/PartDesign_Fillet.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + PartDesign_Fillet + 2012-09-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Flip_Direction.svg b/icons/themed/PartDesign_Flip_Direction.svg new file mode 100644 index 0000000000..34ba6fefa6 --- /dev/null +++ b/icons/themed/PartDesign_Flip_Direction.svg @@ -0,0 +1,825 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Groove.svg b/icons/themed/PartDesign_Groove.svg new file mode 100644 index 0000000000..518b33130f --- /dev/null +++ b/icons/themed/PartDesign_Groove.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + PartDesign_Groove + 2012-06-09 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Groove.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Hole.svg b/icons/themed/PartDesign_Hole.svg new file mode 100644 index 0000000000..74ffac292a --- /dev/null +++ b/icons/themed/PartDesign_Hole.svg @@ -0,0 +1,549 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [jmaustpc] + + + PartDesign_Hole + 2013-03-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Hole.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_InternalExternalGear.svg b/icons/themed/PartDesign_InternalExternalGear.svg new file mode 100644 index 0000000000..25aa64f65b --- /dev/null +++ b/icons/themed/PartDesign_InternalExternalGear.svg @@ -0,0 +1,440 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Line.svg b/icons/themed/PartDesign_Line.svg new file mode 100644 index 0000000000..c0f8790902 --- /dev/null +++ b/icons/themed/PartDesign_Line.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_Line + 2013-05-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Line.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_LinearPattern.svg b/icons/themed/PartDesign_LinearPattern.svg new file mode 100644 index 0000000000..876230ee0c --- /dev/null +++ b/icons/themed/PartDesign_LinearPattern.svg @@ -0,0 +1,1907 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_LinearPattern + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_LinearPattern.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Migrate.svg b/icons/themed/PartDesign_Migrate.svg new file mode 100644 index 0000000000..865ab6ecfa --- /dev/null +++ b/icons/themed/PartDesign_Migrate.svg @@ -0,0 +1,805 @@ + + + PartDesign_Migrate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + PartDesign_Migrate + 12-01-2021 + + + [bitacovir] + + + + + + + + + + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Mirrored.svg b/icons/themed/PartDesign_Mirrored.svg new file mode 100644 index 0000000000..c47aa65a8b --- /dev/null +++ b/icons/themed/PartDesign_Mirrored.svg @@ -0,0 +1,2097 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_Mirrored + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Mirrored.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_MoveFeature.svg b/icons/themed/PartDesign_MoveFeature.svg new file mode 100644 index 0000000000..859b4717aa --- /dev/null +++ b/icons/themed/PartDesign_MoveFeature.svg @@ -0,0 +1,541 @@ + + + PartDesign_MoveFeature + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + PartDesign_MoveFeature + 12-01-2021 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_MoveFeatureInTree.svg b/icons/themed/PartDesign_MoveFeatureInTree.svg new file mode 100644 index 0000000000..e9ad2f4342 --- /dev/null +++ b/icons/themed/PartDesign_MoveFeatureInTree.svg @@ -0,0 +1,524 @@ + + + PartDesign_MoveFeatureInTree + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + PartDesign_MoveFeatureInTree + + + [bitacovir] + + + OpenSCAD_RemoveSubtree + 12-01-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_MoveTip.svg b/icons/themed/PartDesign_MoveTip.svg new file mode 100644 index 0000000000..29afc620ef --- /dev/null +++ b/icons/themed/PartDesign_MoveTip.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [blobfish] + + + 2015-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_MoveTip.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_MultiTransform.svg b/icons/themed/PartDesign_MultiTransform.svg new file mode 100644 index 0000000000..f64ed9893d --- /dev/null +++ b/icons/themed/PartDesign_MultiTransform.svg @@ -0,0 +1,1965 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_MultiTransform + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_MultiTransform.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Overlay_Tip.svg b/icons/themed/PartDesign_Overlay_Tip.svg new file mode 100644 index 0000000000..63f11c60d7 --- /dev/null +++ b/icons/themed/PartDesign_Overlay_Tip.svg @@ -0,0 +1,393 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Pad.svg b/icons/themed/PartDesign_Pad.svg new file mode 100644 index 0000000000..d60d3427db --- /dev/null +++ b/icons/themed/PartDesign_Pad.svg @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + PartDesign_Pad + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Pad.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Plane.svg b/icons/themed/PartDesign_Plane.svg new file mode 100644 index 0000000000..8b5cb4e7fb --- /dev/null +++ b/icons/themed/PartDesign_Plane.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_Plane + 2013-05-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Plane.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Pocket.svg b/icons/themed/PartDesign_Pocket.svg new file mode 100644 index 0000000000..fb63e104ad --- /dev/null +++ b/icons/themed/PartDesign_Pocket.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + PartDesign_Pocket + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Pocket.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Point.svg b/icons/themed/PartDesign_Point.svg new file mode 100644 index 0000000000..b385e4a7a1 --- /dev/null +++ b/icons/themed/PartDesign_Point.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [jrheinlaender] + + + PartDesign_Point + 2013-05-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Point.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_PolarPattern.svg b/icons/themed/PartDesign_PolarPattern.svg new file mode 100644 index 0000000000..6c85241e8e --- /dev/null +++ b/icons/themed/PartDesign_PolarPattern.svg @@ -0,0 +1,1702 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_PolarPattern + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_PolarPattern.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Revolution.svg b/icons/themed/PartDesign_Revolution.svg new file mode 100644 index 0000000000..98158d99e7 --- /dev/null +++ b/icons/themed/PartDesign_Revolution.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + PartDesign_Revolution + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Revolution.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Scaled.svg b/icons/themed/PartDesign_Scaled.svg new file mode 100644 index 0000000000..53483c700f --- /dev/null +++ b/icons/themed/PartDesign_Scaled.svg @@ -0,0 +1,1504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_Scaled + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Scaled.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_ShapeBinder.svg b/icons/themed/PartDesign_ShapeBinder.svg new file mode 100644 index 0000000000..79d782cbf7 --- /dev/null +++ b/icons/themed/PartDesign_ShapeBinder.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_ShapeBinder + 2015-07-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_ShapeBinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Sprocket.svg b/icons/themed/PartDesign_Sprocket.svg new file mode 100644 index 0000000000..0489cd8dd6 --- /dev/null +++ b/icons/themed/PartDesign_Sprocket.svg @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubShapeBinder.svg b/icons/themed/PartDesign_SubShapeBinder.svg new file mode 100644 index 0000000000..73cff440dc --- /dev/null +++ b/icons/themed/PartDesign_SubShapeBinder.svg @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_ShapeBinder + 2015-07-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_ShapeBinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveBox.svg b/icons/themed/PartDesign_SubtractiveBox.svg new file mode 100644 index 0000000000..7e514e26d1 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveBox.svg @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Box + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveCone.svg b/icons/themed/PartDesign_SubtractiveCone.svg new file mode 100644 index 0000000000..8430748711 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveCone.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Cone + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Cone.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveCylinder.svg b/icons/themed/PartDesign_SubtractiveCylinder.svg new file mode 100644 index 0000000000..238f5b3af1 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveCylinder.svg @@ -0,0 +1,317 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Cylinder + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Cylinder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveEllipsoid.svg b/icons/themed/PartDesign_SubtractiveEllipsoid.svg new file mode 100644 index 0000000000..049b084de7 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveEllipsoid.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Ellipsoid + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Ellipsoid.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveHelix.svg b/icons/themed/PartDesign_SubtractiveHelix.svg new file mode 100644 index 0000000000..2309ead867 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveHelix.svg @@ -0,0 +1,1456 @@ + + + PartDesign_Subtractive_Helix + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + PartDesign_Subtractive_Helix + + + bitacovir, davidosterberg + + + PartDesign_Revolution + 2020/12/30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveLoft.svg b/icons/themed/PartDesign_SubtractiveLoft.svg new file mode 100644 index 0000000000..1f72ab9d49 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveLoft.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Loft + 2015-06-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Loft.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractivePipe.svg b/icons/themed/PartDesign_SubtractivePipe.svg new file mode 100644 index 0000000000..ba95f21325 --- /dev/null +++ b/icons/themed/PartDesign_SubtractivePipe.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Pipe + 2015-05-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Pipe.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractivePrism.svg b/icons/themed/PartDesign_SubtractivePrism.svg new file mode 100644 index 0000000000..92933810ba --- /dev/null +++ b/icons/themed/PartDesign_SubtractivePrism.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Prism + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Prism.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveSphere.svg b/icons/themed/PartDesign_SubtractiveSphere.svg new file mode 100644 index 0000000000..b7e9777b54 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveSphere.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Sphere + 2015-05-18 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Sphere.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveTorus.svg b/icons/themed/PartDesign_SubtractiveTorus.svg new file mode 100644 index 0000000000..2c219afe27 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveTorus.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Torus + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Torus.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_SubtractiveWedge.svg b/icons/themed/PartDesign_SubtractiveWedge.svg new file mode 100644 index 0000000000..ec81350e39 --- /dev/null +++ b/icons/themed/PartDesign_SubtractiveWedge.svg @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Subtractive_Wedge + 2015-05-20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Subtractive_Wedge.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartDesign_Thickness.svg b/icons/themed/PartDesign_Thickness.svg new file mode 100644 index 0000000000..7780aee4cc --- /dev/null +++ b/icons/themed/PartDesign_Thickness.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Stefan Tröger] + + + PartDesign_Thickness + 2015-05-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_Thickness.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PartWorkbench.svg b/icons/themed/PartWorkbench.svg new file mode 100644 index 0000000000..9e73c8a2b4 --- /dev/null +++ b/icons/themed/PartWorkbench.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [triplus] + + + + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/PartWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Part_2D_object.svg b/icons/themed/Part_2D_object.svg new file mode 100644 index 0000000000..35d146108e --- /dev/null +++ b/icons/themed/Part_2D_object.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Part_3D_object.svg b/icons/themed/Part_3D_object.svg new file mode 100644 index 0000000000..697691247e --- /dev/null +++ b/icons/themed/Part_3D_object.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Part_Attachment.svg b/icons/themed/Part_Attachment.svg new file mode 100644 index 0000000000..28aec5e85a --- /dev/null +++ b/icons/themed/Part_Attachment.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_Attachment + 2016-05-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Attachment.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_BooleanFragments.svg b/icons/themed/Part_BooleanFragments.svg new file mode 100644 index 0000000000..5abb39970b --- /dev/null +++ b/icons/themed/Part_BooleanFragments.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_BooleanFragments + 2016-07-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Boolean + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Booleans.svg b/icons/themed/Part_Booleans.svg new file mode 100644 index 0000000000..95e6d16259 --- /dev/null +++ b/icons/themed/Part_Booleans.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Part_Booleans + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Booleans.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Part_BoxSelection.svg b/icons/themed/Part_BoxSelection.svg new file mode 100644 index 0000000000..754703d62f --- /dev/null +++ b/icons/themed/Part_BoxSelection.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_SelectGroup.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + hierarchy + group + selection + tree + + + A hierarchical tree structure with two blue child elements of a white parent element, both of which are surrounded by the same dotted box + + + + diff --git a/icons/themed/Part_Box_Parametric.svg b/icons/themed/Part_Box_Parametric.svg new file mode 100644 index 0000000000..43e8012433 --- /dev/null +++ b/icons/themed/Part_Box_Parametric.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Box_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Box_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Chamfer.svg b/icons/themed/Part_Chamfer.svg new file mode 100644 index 0000000000..0a5cc15f47 --- /dev/null +++ b/icons/themed/Part_Chamfer.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Chamfer + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Chamfer.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_CheckGeometry.svg b/icons/themed/Part_CheckGeometry.svg new file mode 100644 index 0000000000..c04e7e8898 --- /dev/null +++ b/icons/themed/Part_CheckGeometry.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [tanderson] + + + Part_CheckGeometry + 2012-09-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_CheckGeometry.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Circle_Parametric.svg b/icons/themed/Part_Circle_Parametric.svg new file mode 100644 index 0000000000..8d7feed1d7 --- /dev/null +++ b/icons/themed/Part_Circle_Parametric.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Circle_Parametric + 2013-03-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Circle_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_ColorFace.svg b/icons/themed/Part_ColorFace.svg new file mode 100644 index 0000000000..3fc5650d7b --- /dev/null +++ b/icons/themed/Part_ColorFace.svg @@ -0,0 +1,102 @@ + + + Part_ColorFace + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_ColorFace + + + [vocx] + + + 2020-10-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_ColorFace.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, [wmayer] + + + Based on the 'Tree_Part' icon, the tree faces of the cube are each of a different color, one blue, one yellow, and the other red. + + + Cube + colors + blue + yellow + red + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Common.svg b/icons/themed/Part_Common.svg new file mode 100644 index 0000000000..0a92ecf646 --- /dev/null +++ b/icons/themed/Part_Common.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Common + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Common.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Compound.svg b/icons/themed/Part_Compound.svg new file mode 100644 index 0000000000..f791b3cfe1 --- /dev/null +++ b/icons/themed/Part_Compound.svg @@ -0,0 +1,408 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_CompoundFilter.svg b/icons/themed/Part_CompoundFilter.svg new file mode 100644 index 0000000000..7848b4c61d --- /dev/null +++ b/icons/themed/Part_CompoundFilter.svg @@ -0,0 +1,586 @@ + + + Part_CompoundFilter + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_CompoundFilter + + + + Bernd Hahnebach + + + 2020-10-08 + + + [vocx] + + + + + CC-BY-SA 4.0 + + + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_CompoundFilter.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + Cube + component + funnel + + + Based on the 'Part_Compound' icon, a cube is superimposed on a funnel, indicating that it is being filtered. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Cone_Parametric.svg b/icons/themed/Part_Cone_Parametric.svg new file mode 100644 index 0000000000..8d25c0a64a --- /dev/null +++ b/icons/themed/Part_Cone_Parametric.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Cone_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Cone_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_CrossSections.svg b/icons/themed/Part_CrossSections.svg new file mode 100644 index 0000000000..7afcb363b1 --- /dev/null +++ b/icons/themed/Part_CrossSections.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_CrossSections + 2012-12-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_CrossSections.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Cut.svg b/icons/themed/Part_Cut.svg new file mode 100644 index 0000000000..3422af7dde --- /dev/null +++ b/icons/themed/Part_Cut.svg @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Cut + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Cut.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Part_Cylinder_Parametric.svg b/icons/themed/Part_Cylinder_Parametric.svg new file mode 100644 index 0000000000..3cc0b48b98 --- /dev/null +++ b/icons/themed/Part_Cylinder_Parametric.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Cylinder_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Cylinder_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Defeaturing.svg b/icons/themed/Part_Defeaturing.svg new file mode 100644 index 0000000000..97af1aa289 --- /dev/null +++ b/icons/themed/Part_Defeaturing.svg @@ -0,0 +1,253 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [triplus] + + + + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/PartWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Detached.svg b/icons/themed/Part_Detached.svg new file mode 100644 index 0000000000..6d80a11de0 --- /dev/null +++ b/icons/themed/Part_Detached.svg @@ -0,0 +1,389 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + diff --git a/icons/themed/Part_Element_Copy.svg b/icons/themed/Part_Element_Copy.svg new file mode 100644 index 0000000000..e9aba08cdb --- /dev/null +++ b/icons/themed/Part_Element_Copy.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Ellipse_Parametric.svg b/icons/themed/Part_Ellipse_Parametric.svg new file mode 100644 index 0000000000..c2a120fbc4 --- /dev/null +++ b/icons/themed/Part_Ellipse_Parametric.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Ellipse_Parametric + 2013-03-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Ellipse_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Ellipsoid_Parametric.svg b/icons/themed/Part_Ellipsoid_Parametric.svg new file mode 100644 index 0000000000..5a3ef3ab46 --- /dev/null +++ b/icons/themed/Part_Ellipsoid_Parametric.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Ellipsoid_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Ellipsoid_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_ExplodeCompound.svg b/icons/themed/Part_ExplodeCompound.svg new file mode 100644 index 0000000000..3e21efd72e --- /dev/null +++ b/icons/themed/Part_ExplodeCompound.svg @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Export.svg b/icons/themed/Part_Export.svg new file mode 100644 index 0000000000..1ab5d01ad4 --- /dev/null +++ b/icons/themed/Part_Export.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Export + 2013-03-22 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Export.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Extrude.svg b/icons/themed/Part_Extrude.svg new file mode 100644 index 0000000000..23ae0d6069 --- /dev/null +++ b/icons/themed/Part_Extrude.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Extrude.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Feature.svg b/icons/themed/Part_Feature.svg new file mode 100644 index 0000000000..6a39deb28a --- /dev/null +++ b/icons/themed/Part_Feature.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_FeatureImport.svg b/icons/themed/Part_FeatureImport.svg new file mode 100644 index 0000000000..65dd2133ae --- /dev/null +++ b/icons/themed/Part_FeatureImport.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Fillet.svg b/icons/themed/Part_Fillet.svg new file mode 100644 index 0000000000..328aba6b91 --- /dev/null +++ b/icons/themed/Part_Fillet.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Fillet + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Fuse.svg b/icons/themed/Part_Fuse.svg new file mode 100644 index 0000000000..c6e7f413f5 --- /dev/null +++ b/icons/themed/Part_Fuse.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Fuse + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/Part_Helix_Parametric.svg b/icons/themed/Part_Helix_Parametric.svg new file mode 100644 index 0000000000..45a6944b1e --- /dev/null +++ b/icons/themed/Part_Helix_Parametric.svg @@ -0,0 +1,133 @@ + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Helix_Parametric + 2013-03-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Helix_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Import.svg b/icons/themed/Part_Import.svg new file mode 100644 index 0000000000..b040bbd1b4 --- /dev/null +++ b/icons/themed/Part_Import.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Import.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_JoinBypass.svg b/icons/themed/Part_JoinBypass.svg new file mode 100644 index 0000000000..2b01ae3789 --- /dev/null +++ b/icons/themed/Part_JoinBypass.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_JoinBypass + 2015-06-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_JoinBypass.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_JoinConnect.svg b/icons/themed/Part_JoinConnect.svg new file mode 100644 index 0000000000..8ed2ffd976 --- /dev/null +++ b/icons/themed/Part_JoinConnect.svg @@ -0,0 +1,72 @@ + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_JoinConnect + 2015-06-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_JoinConnect.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_JoinCutout.svg b/icons/themed/Part_JoinCutout.svg new file mode 100644 index 0000000000..061a43e032 --- /dev/null +++ b/icons/themed/Part_JoinCutout.svg @@ -0,0 +1,70 @@ + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_JoinCutout + 2015-06-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_JoinCutout.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_JoinEmbed.svg b/icons/themed/Part_JoinEmbed.svg new file mode 100644 index 0000000000..286bce7080 --- /dev/null +++ b/icons/themed/Part_JoinEmbed.svg @@ -0,0 +1,75 @@ + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_JoinEmbed + 2015-06-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_JoinEmbed.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Line_Parametric.svg b/icons/themed/Part_Line_Parametric.svg new file mode 100644 index 0000000000..61f5551c0d --- /dev/null +++ b/icons/themed/Part_Line_Parametric.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Line_Parametric + 2013-03-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Line_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_LinearPattern_extent.svg b/icons/themed/Part_LinearPattern_extent.svg new file mode 100644 index 0000000000..486300547e --- /dev/null +++ b/icons/themed/Part_LinearPattern_extent.svg @@ -0,0 +1,1912 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jrheinlaender] + + + PartDesign_LinearPattern + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_LinearPattern.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_LinearPattern_spacing.svg b/icons/themed/Part_LinearPattern_spacing.svg new file mode 100644 index 0000000000..184a324335 --- /dev/null +++ b/icons/themed/Part_LinearPattern_spacing.svg @@ -0,0 +1,1911 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [jrheinlaender] + + + PartDesign_LinearPattern + 2012-09-07 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/PartDesign_LinearPattern.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Loft.svg b/icons/themed/Part_Loft.svg new file mode 100644 index 0000000000..4337e413ca --- /dev/null +++ b/icons/themed/Part_Loft.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + + 2012-06-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Loft.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_MakeFace.svg b/icons/themed/Part_MakeFace.svg new file mode 100644 index 0000000000..3a0928c944 --- /dev/null +++ b/icons/themed/Part_MakeFace.svg @@ -0,0 +1,63 @@ + + + Part_MakeFace + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_MakeFace + + 12-01-2021 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + diff --git a/icons/themed/Part_MakeSolid.svg b/icons/themed/Part_MakeSolid.svg new file mode 100644 index 0000000000..d902507abf --- /dev/null +++ b/icons/themed/Part_MakeSolid.svg @@ -0,0 +1,162 @@ + + + Part_MakeSolid + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_MakeSolid + + + [bitacovir] + + + PartDesign_MoveTip + 12-01-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Mirror.svg b/icons/themed/Part_Mirror.svg new file mode 100644 index 0000000000..4fc529962a --- /dev/null +++ b/icons/themed/Part_Mirror.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Mirror + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Mirror.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Offset.svg b/icons/themed/Part_Offset.svg new file mode 100644 index 0000000000..bd0daf1da4 --- /dev/null +++ b/icons/themed/Part_Offset.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + + 2012-11-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Offset.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Offset2D.svg b/icons/themed/Part_Offset2D.svg new file mode 100644 index 0000000000..0c682a4ab2 --- /dev/null +++ b/icons/themed/Part_Offset2D.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_Offset2D + 2016-09-02 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Offset2D.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Plane_Parametric.svg b/icons/themed/Part_Plane_Parametric.svg new file mode 100644 index 0000000000..ebe36b14be --- /dev/null +++ b/icons/themed/Part_Plane_Parametric.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Plane_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Plane_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Point_Parametric.svg b/icons/themed/Part_Point_Parametric.svg new file mode 100644 index 0000000000..fc29c2c411 --- /dev/null +++ b/icons/themed/Part_Point_Parametric.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Point_Parametric + 2013-03-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Point_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_PointsFromMesh.svg b/icons/themed/Part_PointsFromMesh.svg new file mode 100644 index 0000000000..1559d0b5fb --- /dev/null +++ b/icons/themed/Part_PointsFromMesh.svg @@ -0,0 +1,281 @@ + + + Part_PointsFromMesh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_PointsFromMesh + + + [bitacovir] + + + Part_Shape_from_Mesh + 2021-03-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Alexander Gryson's work + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Polygon_Parametric.svg b/icons/themed/Part_Polygon_Parametric.svg new file mode 100644 index 0000000000..0cc1d522c3 --- /dev/null +++ b/icons/themed/Part_Polygon_Parametric.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Abdullah Tahiri] + + + Sketcher_CreateHexagon_Constr + 2015-05-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateHexagon_Constr.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Primitives.svg b/icons/themed/Part_Primitives.svg new file mode 100644 index 0000000000..43c320f84e --- /dev/null +++ b/icons/themed/Part_Primitives.svg @@ -0,0 +1,418 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Part_CreatePrimitives + 2011-10-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_CreatePrimitives.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Prism_Parametric.svg b/icons/themed/Part_Prism_Parametric.svg new file mode 100644 index 0000000000..3719219638 --- /dev/null +++ b/icons/themed/Part_Prism_Parametric.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part_Prism + 2013-11-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Prism.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_ProjectionOnSurface.svg b/icons/themed/Part_ProjectionOnSurface.svg new file mode 100644 index 0000000000..e7d071a469 --- /dev/null +++ b/icons/themed/Part_ProjectionOnSurface.svg @@ -0,0 +1,184 @@ + + + Part_ProjectionOnSurface + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_ProjectionOnSurface + 2020-10-07 + + + [vocx] + + + + + CC-BY-SA 4.0 + + + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_ProjectionOnSurface.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + Cube + letter + projection + surface + + + Based on the 'Tree_Part' icon, a big 'F' letter is superimposed on the frontal face of the cube. + + + Manuel Apeltauer [apeltauer] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Refine_Shape.svg b/icons/themed/Part_Refine_Shape.svg new file mode 100644 index 0000000000..8fef706898 --- /dev/null +++ b/icons/themed/Part_Refine_Shape.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Refine_Shape + 2013-12-23 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Refine_Shape.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Reverse_Shape.svg b/icons/themed/Part_Reverse_Shape.svg new file mode 100644 index 0000000000..1fd4db01c1 --- /dev/null +++ b/icons/themed/Part_Reverse_Shape.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Shape with arrow pointing upwards and a double pointed curved arrow pointing from inside of the shape to the other side + + + Based on Renovatorio's work + + + + + shape + face + arrow + + + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + [bitacovir] + + + 2020/03/18 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Revolve.svg b/icons/themed/Part_Revolve.svg new file mode 100644 index 0000000000..ae19b0d5c6 --- /dev/null +++ b/icons/themed/Part_Revolve.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Revolve.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_RuledSurface.svg b/icons/themed/Part_RuledSurface.svg new file mode 100644 index 0000000000..ca197b8661 --- /dev/null +++ b/icons/themed/Part_RuledSurface.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_RuledSurface + 2011-10-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_RuledSurface.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Scale.svg b/icons/themed/Part_Scale.svg new file mode 100644 index 0000000000..fd1325970d --- /dev/null +++ b/icons/themed/Part_Scale.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Scale.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + square + arrow + dotted line + + + + A small square in the bottom left corner of a large dotted box with an arrow pointing from the top left corner of the inner box to the top left corner of the outer box + + + + diff --git a/icons/themed/Part_Section.svg b/icons/themed/Part_Section.svg new file mode 100644 index 0000000000..21bdea7e77 --- /dev/null +++ b/icons/themed/Part_Section.svg @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Part_Section + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Section.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_SectionCut.svg b/icons/themed/Part_SectionCut.svg new file mode 100644 index 0000000000..16ab53f118 --- /dev/null +++ b/icons/themed/Part_SectionCut.svg @@ -0,0 +1,52 @@ + + + Part_SectionCut + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_SectionCut + 2022-02-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + + + Uwe Stöhr + + + + + + + + + + diff --git a/icons/themed/Part_ShapeInfo.svg b/icons/themed/Part_ShapeInfo.svg new file mode 100644 index 0000000000..d15b2f0ac3 --- /dev/null +++ b/icons/themed/Part_ShapeInfo.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_ShapeInfo + 2011-10-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_ShapeInfo.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Shape_from_Mesh.svg b/icons/themed/Part_Shape_from_Mesh.svg new file mode 100644 index 0000000000..2f573632ed --- /dev/null +++ b/icons/themed/Part_Shape_from_Mesh.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Shape_from_Mesh + 2013-12-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Shape_from_Mesh.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Shapebuilder.svg b/icons/themed/Part_Shapebuilder.svg new file mode 100644 index 0000000000..1836a352d0 --- /dev/null +++ b/icons/themed/Part_Shapebuilder.svg @@ -0,0 +1,559 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Shapebuilder.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Slice.svg b/icons/themed/Part_Slice.svg new file mode 100644 index 0000000000..9566188137 --- /dev/null +++ b/icons/themed/Part_Slice.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_Slice + 2016-07-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Slice.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_SliceApart.svg b/icons/themed/Part_SliceApart.svg new file mode 100644 index 0000000000..192ca9e6a9 --- /dev/null +++ b/icons/themed/Part_SliceApart.svg @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_Slice + 2016-07-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Slice.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Sphere_Parametric.svg b/icons/themed/Part_Sphere_Parametric.svg new file mode 100644 index 0000000000..0701d24b81 --- /dev/null +++ b/icons/themed/Part_Sphere_Parametric.svg @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Sphere_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Sphere_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Spiral_Parametric.svg b/icons/themed/Part_Spiral_Parametric.svg new file mode 100644 index 0000000000..9024c3f4f7 --- /dev/null +++ b/icons/themed/Part_Spiral_Parametric.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Spiral_Parametric + 2013-10-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Spiral_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Spline_Parametric.svg b/icons/themed/Part_Spline_Parametric.svg new file mode 100644 index 0000000000..c6803d70a7 --- /dev/null +++ b/icons/themed/Part_Spline_Parametric.svg @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Part_Spline_Parametric + 2013-11-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Spline_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Sweep.svg b/icons/themed/Part_Sweep.svg new file mode 100644 index 0000000000..252cfd6403 --- /dev/null +++ b/icons/themed/Part_Sweep.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Sweep + 2012-06-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Sweep.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Thickness.svg b/icons/themed/Part_Thickness.svg new file mode 100644 index 0000000000..1b77c06119 --- /dev/null +++ b/icons/themed/Part_Thickness.svg @@ -0,0 +1,157 @@ + + + Part_Thickness + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Part_Thickness + + + [vocx] + + + 2020-10-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/PartDesign/Gui/Resources/icons/Part_Thickness.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, Stefan Tröger + + + + + Cube + hollow + skin + + + A parallelepiped with a hollowed center. It is based on the 'PartDesign_Thickness' icon. The internal faces are blue instead of red. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Torus_Parametric.svg b/icons/themed/Part_Torus_Parametric.svg new file mode 100644 index 0000000000..b133082472 --- /dev/null +++ b/icons/themed/Part_Torus_Parametric.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Torus_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Torus_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Transformed_Copy.svg b/icons/themed/Part_Transformed_Copy.svg new file mode 100644 index 0000000000..7da527b7d5 --- /dev/null +++ b/icons/themed/Part_Transformed_Copy.svg @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Part_Box + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Box.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Tube_Parametric.svg b/icons/themed/Part_Tube_Parametric.svg new file mode 100644 index 0000000000..3dc0fe62fa --- /dev/null +++ b/icons/themed/Part_Tube_Parametric.svg @@ -0,0 +1,346 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [jmaustpc] + + + Tree_Part_Cylinder_Parametric + 2013-03-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Cylinder_Parametric.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_Wedge_Parametric.svg b/icons/themed/Part_Wedge_Parametric.svg new file mode 100644 index 0000000000..b764a0ba13 --- /dev/null +++ b/icons/themed/Part_Wedge_Parametric.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part_Wedge + 2013-11-08 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part_Wedge.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Part_XOR.svg b/icons/themed/Part_XOR.svg new file mode 100644 index 0000000000..4053352e24 --- /dev/null +++ b/icons/themed/Part_XOR.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [DeepSOIC] + + + Part_XOR + 2016-07-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_XOR.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Part_document.svg b/icons/themed/Part_document.svg new file mode 100644 index 0000000000..6ac21a76c9 --- /dev/null +++ b/icons/themed/Part_document.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PointsWorkbench.svg b/icons/themed/PointsWorkbench.svg new file mode 100644 index 0000000000..47def563ca --- /dev/null +++ b/icons/themed/PointsWorkbench.svg @@ -0,0 +1,106 @@ + + + + + + image/svg+xml + + + + $committer + + + + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Points/Gui/Resources/icons/PointsWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Points_Convert.svg b/icons/themed/Points_Convert.svg new file mode 100644 index 0000000000..f085448a4c --- /dev/null +++ b/icons/themed/Points_Convert.svg @@ -0,0 +1,341 @@ + + + Points_Convert + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Points_Convert + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020-11-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Alexander Gryson's work + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Points_Export_Point_cloud.svg b/icons/themed/Points_Export_Point_cloud.svg new file mode 100644 index 0000000000..f920b43c33 --- /dev/null +++ b/icons/themed/Points_Export_Point_cloud.svg @@ -0,0 +1,1078 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + + + + media + stop + playback + video + music + + + + + + [agryson] Alexander Gryson + + + [agryson] Alexander Gryson + + + Points_Export_Point_cloud + 2014-01-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Points/Gui/Resources/icons/Points_Export_Point_cloud.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Points_Import_Point_cloud.svg b/icons/themed/Points_Import_Point_cloud.svg new file mode 100644 index 0000000000..2e6daa829d --- /dev/null +++ b/icons/themed/Points_Import_Point_cloud.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] ALexadner Gryson + + + + + + media + stop + playback + video + music + + + + + + [agryson] Alexander Gryson + + + [agryson] Alexander Gryson + + + Points_Import_Point_cloud + 2014-01-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Points/Gui/Resources/icons/Points_Import_Point_cloud.svg + + + FreeCAD LGPL2+ + + + http://agryson.net + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Points_Merge.svg b/icons/themed/Points_Merge.svg new file mode 100644 index 0000000000..aabfbdb9dc --- /dev/null +++ b/icons/themed/Points_Merge.svg @@ -0,0 +1,193 @@ + + + Points_Merge + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Points_Merge + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020-11-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Alexander Gryson's work + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Points_Structure.svg b/icons/themed/Points_Structure.svg new file mode 100644 index 0000000000..98f06c459f --- /dev/null +++ b/icons/themed/Points_Structure.svg @@ -0,0 +1,197 @@ + + + Points_Structure + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Points_Structure + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020-11-21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Alexander Gryson's work + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/PolygonPick.svg b/icons/themed/PolygonPick.svg new file mode 100644 index 0000000000..65286d906d --- /dev/null +++ b/icons/themed/PolygonPick.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/ReverseEngineeringWorkbench.svg b/icons/themed/ReverseEngineeringWorkbench.svg new file mode 100644 index 0000000000..dea62345f5 --- /dev/null +++ b/icons/themed/ReverseEngineeringWorkbench.svg @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/RobotWorkbench.svg b/icons/themed/RobotWorkbench.svg new file mode 100644 index 0000000000..d3e1d13739 --- /dev/null +++ b/icons/themed/RobotWorkbench.svg @@ -0,0 +1,233 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [triplus] + + + RobotWorkbench + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/RobotWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_CreateRobot.svg b/icons/themed/Robot_CreateRobot.svg new file mode 100644 index 0000000000..c6f4c90c75 --- /dev/null +++ b/icons/themed/Robot_CreateRobot.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_CreateRobot + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_CreateRobot.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_CreateTrajectory.svg b/icons/themed/Robot_CreateTrajectory.svg new file mode 100644 index 0000000000..66e0dbb1bd --- /dev/null +++ b/icons/themed/Robot_CreateTrajectory.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_CreateTrajectory + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_CreateTrajectory.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_Edge2Trac.svg b/icons/themed/Robot_Edge2Trac.svg new file mode 100644 index 0000000000..20ff79e7de --- /dev/null +++ b/icons/themed/Robot_Edge2Trac.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_Edge2Trac + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_Edge2Trac.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_Export.svg b/icons/themed/Robot_Export.svg new file mode 100644 index 0000000000..a3a8ec8644 --- /dev/null +++ b/icons/themed/Robot_Export.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_Export + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_Export.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_InsertWaypoint.svg b/icons/themed/Robot_InsertWaypoint.svg new file mode 100644 index 0000000000..b9f6b975ed --- /dev/null +++ b/icons/themed/Robot_InsertWaypoint.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_InsertWaypoint + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_InsertWaypoint.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_InsertWaypointPre.svg b/icons/themed/Robot_InsertWaypointPre.svg new file mode 100644 index 0000000000..1e45e91927 --- /dev/null +++ b/icons/themed/Robot_InsertWaypointPre.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Robot_InsertWaypointPre + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_InsertWaypointPre.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_RestoreHomePos.svg b/icons/themed/Robot_RestoreHomePos.svg new file mode 100644 index 0000000000..fbafd83fd1 --- /dev/null +++ b/icons/themed/Robot_RestoreHomePos.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_RestoreHomePos + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_RestoreHomePos.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_SetDefaultOrientation.svg b/icons/themed/Robot_SetDefaultOrientation.svg new file mode 100644 index 0000000000..878e6486db --- /dev/null +++ b/icons/themed/Robot_SetDefaultOrientation.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_SetDefaultOrientation + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_SetDefaultOrientation.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_SetDefaultValues.svg b/icons/themed/Robot_SetDefaultValues.svg new file mode 100644 index 0000000000..509c0d2a7d --- /dev/null +++ b/icons/themed/Robot_SetDefaultValues.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_SetDefaultValues + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_SetDefaultValues.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_SetHomePos.svg b/icons/themed/Robot_SetHomePos.svg new file mode 100644 index 0000000000..c714594b44 --- /dev/null +++ b/icons/themed/Robot_SetHomePos.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Robot_SetHomePos + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_SetHomePos.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_Simulate.svg b/icons/themed/Robot_Simulate.svg new file mode 100644 index 0000000000..aa0248c936 --- /dev/null +++ b/icons/themed/Robot_Simulate.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_Simulate + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_Simulate.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_TrajectoryCompound.svg b/icons/themed/Robot_TrajectoryCompound.svg new file mode 100644 index 0000000000..3e7c07d55a --- /dev/null +++ b/icons/themed/Robot_TrajectoryCompound.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Robot_TrajectoryCompound + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_TrajectoryCompound.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Robot_TrajectoryDressUp.svg b/icons/themed/Robot_TrajectoryDressUp.svg new file mode 100644 index 0000000000..e178457950 --- /dev/null +++ b/icons/themed/Robot_TrajectoryDressUp.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Robot_TrajectoryDressUp + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Robot/Gui/Resources/icons/Robot_TrajectoryDressUp.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketch.svg b/icons/themed/Sketch.svg new file mode 100644 index 0000000000..714c05ed20 --- /dev/null +++ b/icons/themed/Sketch.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_CreatePolyline + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreatePolyline.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SketcherWorkbench.svg b/icons/themed/SketcherWorkbench.svg new file mode 100644 index 0000000000..861f699877 --- /dev/null +++ b/icons/themed/SketcherWorkbench.svg @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [triplus] + + + SketcherWorkbench + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/SketcherWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_AlterFillet.svg b/icons/themed/Sketcher_AlterFillet.svg new file mode 100644 index 0000000000..611ad48d99 --- /dev/null +++ b/icons/themed/Sketcher_AlterFillet.svg @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ArcOverlay.svg b/icons/themed/Sketcher_ArcOverlay.svg new file mode 100644 index 0000000000..cf3345fbe5 --- /dev/null +++ b/icons/themed/Sketcher_ArcOverlay.svg @@ -0,0 +1,400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineComb.svg b/icons/themed/Sketcher_BSplineComb.svg new file mode 100644 index 0000000000..6cc734e126 --- /dev/null +++ b/icons/themed/Sketcher_BSplineComb.svg @@ -0,0 +1,384 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineConvertToNURBS.svg b/icons/themed/Sketcher_BSplineConvertToNURBS.svg new file mode 100644 index 0000000000..547f261d3d --- /dev/null +++ b/icons/themed/Sketcher_BSplineConvertToNURBS.svg @@ -0,0 +1,570 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineDecreaseDegree.svg b/icons/themed/Sketcher_BSplineDecreaseDegree.svg new file mode 100644 index 0000000000..f0a3f9017f --- /dev/null +++ b/icons/themed/Sketcher_BSplineDecreaseDegree.svg @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineDecreaseKnotMultiplicity.svg b/icons/themed/Sketcher_BSplineDecreaseKnotMultiplicity.svg new file mode 100644 index 0000000000..c20ae0edc1 --- /dev/null +++ b/icons/themed/Sketcher_BSplineDecreaseKnotMultiplicity.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineDegree.svg b/icons/themed/Sketcher_BSplineDegree.svg new file mode 100644 index 0000000000..a0193ab3a7 --- /dev/null +++ b/icons/themed/Sketcher_BSplineDegree.svg @@ -0,0 +1,140 @@ + + + Sketcher_BSplineDegree + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Sketcher_BSplineDegree + + + [bitacovir] + + + Sketcher_Create_Periodic_BSpline + 22-03-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineIncreaseDegree.svg b/icons/themed/Sketcher_BSplineIncreaseDegree.svg new file mode 100644 index 0000000000..d5e5fc6784 --- /dev/null +++ b/icons/themed/Sketcher_BSplineIncreaseDegree.svg @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineIncreaseKnotMultiplicity.svg b/icons/themed/Sketcher_BSplineIncreaseKnotMultiplicity.svg new file mode 100644 index 0000000000..dfa42f8b33 --- /dev/null +++ b/icons/themed/Sketcher_BSplineIncreaseKnotMultiplicity.svg @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineInsertKnot.svg b/icons/themed/Sketcher_BSplineInsertKnot.svg new file mode 100644 index 0000000000..d692aee41c --- /dev/null +++ b/icons/themed/Sketcher_BSplineInsertKnot.svg @@ -0,0 +1,400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplineKnotMultiplicity.svg b/icons/themed/Sketcher_BSplineKnotMultiplicity.svg new file mode 100644 index 0000000000..52958e8f7c --- /dev/null +++ b/icons/themed/Sketcher_BSplineKnotMultiplicity.svg @@ -0,0 +1,156 @@ + + + Sketcher_BSplineKnotMultiplicity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Sketcher_BSplineKnotMultiplicity + + + [bitacovir] + + + Sketcher_Create_Periodic_BSpline + 22-03-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplinePoleWeight.svg b/icons/themed/Sketcher_BSplinePoleWeight.svg new file mode 100644 index 0000000000..fffafe3b92 --- /dev/null +++ b/icons/themed/Sketcher_BSplinePoleWeight.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [agryson] Alexander Gryson + + + 2017-02-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Toggle_BSpline_Information.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_BSplinePolygon.svg b/icons/themed/Sketcher_BSplinePolygon.svg new file mode 100644 index 0000000000..463197adf1 --- /dev/null +++ b/icons/themed/Sketcher_BSplinePolygon.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CarbonCopy.svg b/icons/themed/Sketcher_CarbonCopy.svg new file mode 100644 index 0000000000..940fc1442c --- /dev/null +++ b/icons/themed/Sketcher_CarbonCopy.svg @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CarbonCopy_Constr.svg b/icons/themed/Sketcher_CarbonCopy_Constr.svg new file mode 100644 index 0000000000..873eb34612 --- /dev/null +++ b/icons/themed/Sketcher_CarbonCopy_Constr.svg @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Clone.svg b/icons/themed/Sketcher_Clone.svg new file mode 100644 index 0000000000..4128050b6c --- /dev/null +++ b/icons/themed/Sketcher_Clone.svg @@ -0,0 +1,453 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Conics.svg b/icons/themed/Sketcher_Conics.svg new file mode 100644 index 0000000000..4d95b86d79 --- /dev/null +++ b/icons/themed/Sketcher_Conics.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Conics_Constr.svg b/icons/themed/Sketcher_Conics_Constr.svg new file mode 100644 index 0000000000..f911ec7511 --- /dev/null +++ b/icons/themed/Sketcher_Conics_Constr.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Conics_Ellipse_3points.svg b/icons/themed/Sketcher_Conics_Ellipse_3points.svg new file mode 100644 index 0000000000..87c2bc68d8 --- /dev/null +++ b/icons/themed/Sketcher_Conics_Ellipse_3points.svg @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Conics_Ellipse_Center.svg b/icons/themed/Sketcher_Conics_Ellipse_Center.svg new file mode 100644 index 0000000000..0aa1463598 --- /dev/null +++ b/icons/themed/Sketcher_Conics_Ellipse_Center.svg @@ -0,0 +1,436 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ConstrainCoincident_old.svg b/icons/themed/Sketcher_ConstrainCoincident_old.svg new file mode 100644 index 0000000000..cfd905a7e7 --- /dev/null +++ b/icons/themed/Sketcher_ConstrainCoincident_old.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_ConstrainCoincident + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainCoincident.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ConstrainDistance_old.svg b/icons/themed/Sketcher_ConstrainDistance_old.svg new file mode 100644 index 0000000000..f71ac728d7 --- /dev/null +++ b/icons/themed/Sketcher_ConstrainDistance_old.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Sketcher_ConstrainDistance + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainDistance.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ConstrainHorizontal_old.svg b/icons/themed/Sketcher_ConstrainHorizontal_old.svg new file mode 100644 index 0000000000..1fb4e813f3 --- /dev/null +++ b/icons/themed/Sketcher_ConstrainHorizontal_old.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_ConstrainHorizontal + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainHorizontal.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ConstrainParallel_old.svg b/icons/themed/Sketcher_ConstrainParallel_old.svg new file mode 100644 index 0000000000..3a0efec7a6 --- /dev/null +++ b/icons/themed/Sketcher_ConstrainParallel_old.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Sketcher_ConstrainParallel + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainParallel.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ConstrainVertical_old.svg b/icons/themed/Sketcher_ConstrainVertical_old.svg new file mode 100644 index 0000000000..151fbe9d7d --- /dev/null +++ b/icons/themed/Sketcher_ConstrainVertical_old.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_ConstrainVertical + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ConstrainVertical.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Copy.svg b/icons/themed/Sketcher_Copy.svg new file mode 100644 index 0000000000..24ec8fdbd3 --- /dev/null +++ b/icons/themed/Sketcher_Copy.svg @@ -0,0 +1,417 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Create3PointArc.svg b/icons/themed/Sketcher_Create3PointArc.svg new file mode 100644 index 0000000000..85c4e5bd2b --- /dev/null +++ b/icons/themed/Sketcher_Create3PointArc.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Create3PointArc_Constr.svg b/icons/themed/Sketcher_Create3PointArc_Constr.svg new file mode 100644 index 0000000000..7a98895011 --- /dev/null +++ b/icons/themed/Sketcher_Create3PointArc_Constr.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Create3PointCircle.svg b/icons/themed/Sketcher_Create3PointCircle.svg new file mode 100644 index 0000000000..4f3657fc4c --- /dev/null +++ b/icons/themed/Sketcher_Create3PointCircle.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Create3PointCircle_Constr.svg b/icons/themed/Sketcher_Create3PointCircle_Constr.svg new file mode 100644 index 0000000000..e7c75c7c39 --- /dev/null +++ b/icons/themed/Sketcher_Create3PointCircle_Constr.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateArc.svg b/icons/themed/Sketcher_CreateArc.svg new file mode 100644 index 0000000000..1e9cc10d56 --- /dev/null +++ b/icons/themed/Sketcher_CreateArc.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateArcSlot.svg b/icons/themed/Sketcher_CreateArcSlot.svg new file mode 100644 index 0000000000..d3b89baf58 --- /dev/null +++ b/icons/themed/Sketcher_CreateArcSlot.svg @@ -0,0 +1,426 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateArcSlot_Constr.svg b/icons/themed/Sketcher_CreateArcSlot_Constr.svg new file mode 100644 index 0000000000..dede5bd650 --- /dev/null +++ b/icons/themed/Sketcher_CreateArcSlot_Constr.svg @@ -0,0 +1,426 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateArc_Constr.svg b/icons/themed/Sketcher_CreateArc_Constr.svg new file mode 100644 index 0000000000..83aee40637 --- /dev/null +++ b/icons/themed/Sketcher_CreateArc_Constr.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateBSpline.svg b/icons/themed/Sketcher_CreateBSpline.svg new file mode 100644 index 0000000000..1cf59b9bda --- /dev/null +++ b/icons/themed/Sketcher_CreateBSpline.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateBSplineByInterpolation.svg b/icons/themed/Sketcher_CreateBSplineByInterpolation.svg new file mode 100644 index 0000000000..f4008ec513 --- /dev/null +++ b/icons/themed/Sketcher_CreateBSplineByInterpolation.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateBSplineByInterpolation_Constr.svg b/icons/themed/Sketcher_CreateBSplineByInterpolation_Constr.svg new file mode 100644 index 0000000000..7df6c49de3 --- /dev/null +++ b/icons/themed/Sketcher_CreateBSplineByInterpolation_Constr.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateBSpline_Constr.svg b/icons/themed/Sketcher_CreateBSpline_Constr.svg new file mode 100644 index 0000000000..3f79050d32 --- /dev/null +++ b/icons/themed/Sketcher_CreateBSpline_Constr.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateChamfer.svg b/icons/themed/Sketcher_CreateChamfer.svg new file mode 100644 index 0000000000..1cd54dd83e --- /dev/null +++ b/icons/themed/Sketcher_CreateChamfer.svg @@ -0,0 +1,537 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateCircle.svg b/icons/themed/Sketcher_CreateCircle.svg new file mode 100644 index 0000000000..1a7fcceb46 --- /dev/null +++ b/icons/themed/Sketcher_CreateCircle.svg @@ -0,0 +1,299 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateCircle_Constr.svg b/icons/themed/Sketcher_CreateCircle_Constr.svg new file mode 100644 index 0000000000..3af57ecef4 --- /dev/null +++ b/icons/themed/Sketcher_CreateCircle_Constr.svg @@ -0,0 +1,310 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateEllipseByCenter.svg b/icons/themed/Sketcher_CreateEllipseByCenter.svg new file mode 100644 index 0000000000..9282970bba --- /dev/null +++ b/icons/themed/Sketcher_CreateEllipseByCenter.svg @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateEllipseByCenter_Constr.svg b/icons/themed/Sketcher_CreateEllipseByCenter_Constr.svg new file mode 100644 index 0000000000..2bd05a1757 --- /dev/null +++ b/icons/themed/Sketcher_CreateEllipseByCenter_Constr.svg @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateEllipse_3points.svg b/icons/themed/Sketcher_CreateEllipse_3points.svg new file mode 100644 index 0000000000..8b0860e961 --- /dev/null +++ b/icons/themed/Sketcher_CreateEllipse_3points.svg @@ -0,0 +1,452 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateEllipse_3points_Constr.svg b/icons/themed/Sketcher_CreateEllipse_3points_Constr.svg new file mode 100644 index 0000000000..b8f4a91208 --- /dev/null +++ b/icons/themed/Sketcher_CreateEllipse_3points_Constr.svg @@ -0,0 +1,474 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateElliptical_Arc.svg b/icons/themed/Sketcher_CreateElliptical_Arc.svg new file mode 100644 index 0000000000..71780323b5 --- /dev/null +++ b/icons/themed/Sketcher_CreateElliptical_Arc.svg @@ -0,0 +1,503 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateElliptical_Arc_Constr.svg b/icons/themed/Sketcher_CreateElliptical_Arc_Constr.svg new file mode 100644 index 0000000000..0b6fc0f6fd --- /dev/null +++ b/icons/themed/Sketcher_CreateElliptical_Arc_Constr.svg @@ -0,0 +1,503 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateFillet.svg b/icons/themed/Sketcher_CreateFillet.svg new file mode 100644 index 0000000000..40d4a8fcd2 --- /dev/null +++ b/icons/themed/Sketcher_CreateFillet.svg @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateFrame.svg b/icons/themed/Sketcher_CreateFrame.svg new file mode 100644 index 0000000000..9b6e9cb953 --- /dev/null +++ b/icons/themed/Sketcher_CreateFrame.svg @@ -0,0 +1,502 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateFrame_Constr.svg b/icons/themed/Sketcher_CreateFrame_Constr.svg new file mode 100644 index 0000000000..15445a7dbb --- /dev/null +++ b/icons/themed/Sketcher_CreateFrame_Constr.svg @@ -0,0 +1,502 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateHeptagon.svg b/icons/themed/Sketcher_CreateHeptagon.svg new file mode 100644 index 0000000000..4de8de3985 --- /dev/null +++ b/icons/themed/Sketcher_CreateHeptagon.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateHeptagon_Constr.svg b/icons/themed/Sketcher_CreateHeptagon_Constr.svg new file mode 100644 index 0000000000..8a2d868e1e --- /dev/null +++ b/icons/themed/Sketcher_CreateHeptagon_Constr.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateHexagon.svg b/icons/themed/Sketcher_CreateHexagon.svg new file mode 100644 index 0000000000..4e3e5c2861 --- /dev/null +++ b/icons/themed/Sketcher_CreateHexagon.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateHexagon_Constr.svg b/icons/themed/Sketcher_CreateHexagon_Constr.svg new file mode 100644 index 0000000000..9404f526b3 --- /dev/null +++ b/icons/themed/Sketcher_CreateHexagon_Constr.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateHyperbolic_Arc.svg b/icons/themed/Sketcher_CreateHyperbolic_Arc.svg new file mode 100644 index 0000000000..a60631fbde --- /dev/null +++ b/icons/themed/Sketcher_CreateHyperbolic_Arc.svg @@ -0,0 +1,552 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateHyperbolic_Arc_Constr.svg b/icons/themed/Sketcher_CreateHyperbolic_Arc_Constr.svg new file mode 100644 index 0000000000..66050d4ba0 --- /dev/null +++ b/icons/themed/Sketcher_CreateHyperbolic_Arc_Constr.svg @@ -0,0 +1,552 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateLine.svg b/icons/themed/Sketcher_CreateLine.svg new file mode 100644 index 0000000000..647fa8bff6 --- /dev/null +++ b/icons/themed/Sketcher_CreateLine.svg @@ -0,0 +1,512 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateLineAngleLength.svg b/icons/themed/Sketcher_CreateLineAngleLength.svg new file mode 100644 index 0000000000..6e1aad3fc4 --- /dev/null +++ b/icons/themed/Sketcher_CreateLineAngleLength.svg @@ -0,0 +1,556 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateLineAngleLength_Constr.svg b/icons/themed/Sketcher_CreateLineAngleLength_Constr.svg new file mode 100644 index 0000000000..79102957ea --- /dev/null +++ b/icons/themed/Sketcher_CreateLineAngleLength_Constr.svg @@ -0,0 +1,556 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateLineLengthWidth.svg b/icons/themed/Sketcher_CreateLineLengthWidth.svg new file mode 100644 index 0000000000..5d45c39852 --- /dev/null +++ b/icons/themed/Sketcher_CreateLineLengthWidth.svg @@ -0,0 +1,536 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateLineLengthWidth_Constr.svg b/icons/themed/Sketcher_CreateLineLengthWidth_Constr.svg new file mode 100644 index 0000000000..931368b0cb --- /dev/null +++ b/icons/themed/Sketcher_CreateLineLengthWidth_Constr.svg @@ -0,0 +1,539 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateLine_Constr.svg b/icons/themed/Sketcher_CreateLine_Constr.svg new file mode 100644 index 0000000000..f891a5c4d1 --- /dev/null +++ b/icons/themed/Sketcher_CreateLine_Constr.svg @@ -0,0 +1,512 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateOblong.svg b/icons/themed/Sketcher_CreateOblong.svg new file mode 100644 index 0000000000..14eba86ec7 --- /dev/null +++ b/icons/themed/Sketcher_CreateOblong.svg @@ -0,0 +1,537 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateOblong_Constr.svg b/icons/themed/Sketcher_CreateOblong_Constr.svg new file mode 100644 index 0000000000..2ccfaf3ba5 --- /dev/null +++ b/icons/themed/Sketcher_CreateOblong_Constr.svg @@ -0,0 +1,537 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateOctagon.svg b/icons/themed/Sketcher_CreateOctagon.svg new file mode 100644 index 0000000000..b9223b79f1 --- /dev/null +++ b/icons/themed/Sketcher_CreateOctagon.svg @@ -0,0 +1,533 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateOctagon_Constr.svg b/icons/themed/Sketcher_CreateOctagon_Constr.svg new file mode 100644 index 0000000000..80fa3b2582 --- /dev/null +++ b/icons/themed/Sketcher_CreateOctagon_Constr.svg @@ -0,0 +1,533 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateParabolic_Arc.svg b/icons/themed/Sketcher_CreateParabolic_Arc.svg new file mode 100644 index 0000000000..6a491b09df --- /dev/null +++ b/icons/themed/Sketcher_CreateParabolic_Arc.svg @@ -0,0 +1,552 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateParabolic_Arc_Constr.svg b/icons/themed/Sketcher_CreateParabolic_Arc_Constr.svg new file mode 100644 index 0000000000..9f44c0aa5a --- /dev/null +++ b/icons/themed/Sketcher_CreateParabolic_Arc_Constr.svg @@ -0,0 +1,552 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePentagon.svg b/icons/themed/Sketcher_CreatePentagon.svg new file mode 100644 index 0000000000..56d565bce1 --- /dev/null +++ b/icons/themed/Sketcher_CreatePentagon.svg @@ -0,0 +1,537 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePentagon_Constr.svg b/icons/themed/Sketcher_CreatePentagon_Constr.svg new file mode 100644 index 0000000000..82d5b75867 --- /dev/null +++ b/icons/themed/Sketcher_CreatePentagon_Constr.svg @@ -0,0 +1,537 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePeriodicBSplineByInterpolation.svg b/icons/themed/Sketcher_CreatePeriodicBSplineByInterpolation.svg new file mode 100644 index 0000000000..0c0e815659 --- /dev/null +++ b/icons/themed/Sketcher_CreatePeriodicBSplineByInterpolation.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePeriodicBSplineByInterpolation_Constr.svg b/icons/themed/Sketcher_CreatePeriodicBSplineByInterpolation_Constr.svg new file mode 100644 index 0000000000..7e8f257730 --- /dev/null +++ b/icons/themed/Sketcher_CreatePeriodicBSplineByInterpolation_Constr.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePoint.svg b/icons/themed/Sketcher_CreatePoint.svg new file mode 100644 index 0000000000..6df2ddfbe3 --- /dev/null +++ b/icons/themed/Sketcher_CreatePoint.svg @@ -0,0 +1,410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePointFillet.svg b/icons/themed/Sketcher_CreatePointFillet.svg new file mode 100644 index 0000000000..42b94ea950 --- /dev/null +++ b/icons/themed/Sketcher_CreatePointFillet.svg @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePolyline.svg b/icons/themed/Sketcher_CreatePolyline.svg new file mode 100644 index 0000000000..f2e77bd17b --- /dev/null +++ b/icons/themed/Sketcher_CreatePolyline.svg @@ -0,0 +1,597 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreatePolyline_Constr.svg b/icons/themed/Sketcher_CreatePolyline_Constr.svg new file mode 100644 index 0000000000..c28edfbe17 --- /dev/null +++ b/icons/themed/Sketcher_CreatePolyline_Constr.svg @@ -0,0 +1,597 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle.svg b/icons/themed/Sketcher_CreateRectangle.svg new file mode 100644 index 0000000000..baf03d8923 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle.svg @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle3Points.svg b/icons/themed/Sketcher_CreateRectangle3Points.svg new file mode 100644 index 0000000000..88da1350f4 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle3Points.svg @@ -0,0 +1,557 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle3Points_Center.svg b/icons/themed/Sketcher_CreateRectangle3Points_Center.svg new file mode 100644 index 0000000000..787240a04c --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle3Points_Center.svg @@ -0,0 +1,557 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle3Points_Center_Constr.svg b/icons/themed/Sketcher_CreateRectangle3Points_Center_Constr.svg new file mode 100644 index 0000000000..f9e2901d27 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle3Points_Center_Constr.svg @@ -0,0 +1,557 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle3Points_Constr.svg b/icons/themed/Sketcher_CreateRectangle3Points_Constr.svg new file mode 100644 index 0000000000..a1d5462968 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle3Points_Constr.svg @@ -0,0 +1,557 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangleSlot.svg b/icons/themed/Sketcher_CreateRectangleSlot.svg new file mode 100644 index 0000000000..e9d466d685 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangleSlot.svg @@ -0,0 +1,591 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangleSlot_Constr.svg b/icons/themed/Sketcher_CreateRectangleSlot_Constr.svg new file mode 100644 index 0000000000..3312f2be86 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangleSlot_Constr.svg @@ -0,0 +1,591 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle_Center.svg b/icons/themed/Sketcher_CreateRectangle_Center.svg new file mode 100644 index 0000000000..47867899ea --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle_Center.svg @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle_Center_Constr.svg b/icons/themed/Sketcher_CreateRectangle_Center_Constr.svg new file mode 100644 index 0000000000..014bf261b1 --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle_Center_Constr.svg @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRectangle_Constr.svg b/icons/themed/Sketcher_CreateRectangle_Constr.svg new file mode 100644 index 0000000000..5541c3909e --- /dev/null +++ b/icons/themed/Sketcher_CreateRectangle_Constr.svg @@ -0,0 +1,535 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRegularPolygon.svg b/icons/themed/Sketcher_CreateRegularPolygon.svg new file mode 100644 index 0000000000..63944453d9 --- /dev/null +++ b/icons/themed/Sketcher_CreateRegularPolygon.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + N + N + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateRegularPolygon_Constr.svg b/icons/themed/Sketcher_CreateRegularPolygon_Constr.svg new file mode 100644 index 0000000000..095e6fd9dd --- /dev/null +++ b/icons/themed/Sketcher_CreateRegularPolygon_Constr.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + N + N + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateSlot.svg b/icons/themed/Sketcher_CreateSlot.svg new file mode 100644 index 0000000000..397daf6a61 --- /dev/null +++ b/icons/themed/Sketcher_CreateSlot.svg @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateSlot_Constr.svg b/icons/themed/Sketcher_CreateSlot_Constr.svg new file mode 100644 index 0000000000..64418eb114 --- /dev/null +++ b/icons/themed/Sketcher_CreateSlot_Constr.svg @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateSquare.svg b/icons/themed/Sketcher_CreateSquare.svg new file mode 100644 index 0000000000..5f3506bfdd --- /dev/null +++ b/icons/themed/Sketcher_CreateSquare.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateSquare_Constr.svg b/icons/themed/Sketcher_CreateSquare_Constr.svg new file mode 100644 index 0000000000..dd5af9a9ac --- /dev/null +++ b/icons/themed/Sketcher_CreateSquare_Constr.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateText.svg b/icons/themed/Sketcher_CreateText.svg new file mode 100644 index 0000000000..3d7f1c346f --- /dev/null +++ b/icons/themed/Sketcher_CreateText.svg @@ -0,0 +1,293 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateTriangle.svg b/icons/themed/Sketcher_CreateTriangle.svg new file mode 100644 index 0000000000..f374b71782 --- /dev/null +++ b/icons/themed/Sketcher_CreateTriangle.svg @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_CreateTriangle_Constr.svg b/icons/themed/Sketcher_CreateTriangle_Constr.svg new file mode 100644 index 0000000000..9db0f3968e --- /dev/null +++ b/icons/themed/Sketcher_CreateTriangle_Constr.svg @@ -0,0 +1,259 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Create_Periodic_BSpline.svg b/icons/themed/Sketcher_Create_Periodic_BSpline.svg new file mode 100644 index 0000000000..f1ab951edb --- /dev/null +++ b/icons/themed/Sketcher_Create_Periodic_BSpline.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Create_Periodic_BSpline_Constr.svg b/icons/themed/Sketcher_Create_Periodic_BSpline_Constr.svg new file mode 100644 index 0000000000..00def7e347 --- /dev/null +++ b/icons/themed/Sketcher_Create_Periodic_BSpline_Constr.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Crosshair.svg b/icons/themed/Sketcher_Crosshair.svg new file mode 100644 index 0000000000..9f982ce3c1 --- /dev/null +++ b/icons/themed/Sketcher_Crosshair.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + + + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_DeleteConstraints.svg b/icons/themed/Sketcher_DeleteConstraints.svg new file mode 100644 index 0000000000..b4afd16287 --- /dev/null +++ b/icons/themed/Sketcher_DeleteConstraints.svg @@ -0,0 +1,464 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_DeleteGeometry.svg b/icons/themed/Sketcher_DeleteGeometry.svg new file mode 100644 index 0000000000..ccc6fec26f --- /dev/null +++ b/icons/themed/Sketcher_DeleteGeometry.svg @@ -0,0 +1,507 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_DraftLine.svg b/icons/themed/Sketcher_DraftLine.svg new file mode 100644 index 0000000000..4b4851bceb --- /dev/null +++ b/icons/themed/Sketcher_DraftLine.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_DraftLine + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_DraftLine.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_EditSketch.svg b/icons/themed/Sketcher_EditSketch.svg new file mode 100644 index 0000000000..bd625bb437 --- /dev/null +++ b/icons/themed/Sketcher_EditSketch.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2014-07-13 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_EditSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Arc_Edge.svg b/icons/themed/Sketcher_Element_Arc_Edge.svg new file mode 100644 index 0000000000..e8da936a26 --- /dev/null +++ b/icons/themed/Sketcher_Element_Arc_Edge.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Arc_EndPoint.svg b/icons/themed/Sketcher_Element_Arc_EndPoint.svg new file mode 100644 index 0000000000..d96e89e699 --- /dev/null +++ b/icons/themed/Sketcher_Element_Arc_EndPoint.svg @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Arc_MidPoint.svg b/icons/themed/Sketcher_Element_Arc_MidPoint.svg new file mode 100644 index 0000000000..ae496d7161 --- /dev/null +++ b/icons/themed/Sketcher_Element_Arc_MidPoint.svg @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Arc_StartingPoint.svg b/icons/themed/Sketcher_Element_Arc_StartingPoint.svg new file mode 100644 index 0000000000..7e4684a6b3 --- /dev/null +++ b/icons/themed/Sketcher_Element_Arc_StartingPoint.svg @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_BSpline_Edge.svg b/icons/themed/Sketcher_Element_BSpline_Edge.svg new file mode 100644 index 0000000000..765f9fff2a --- /dev/null +++ b/icons/themed/Sketcher_Element_BSpline_Edge.svg @@ -0,0 +1,303 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_BSpline_EndPoint.svg b/icons/themed/Sketcher_Element_BSpline_EndPoint.svg new file mode 100644 index 0000000000..e313b83b78 --- /dev/null +++ b/icons/themed/Sketcher_Element_BSpline_EndPoint.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_BSpline_StartPoint.svg b/icons/themed/Sketcher_Element_BSpline_StartPoint.svg new file mode 100644 index 0000000000..0af9edb7b8 --- /dev/null +++ b/icons/themed/Sketcher_Element_BSpline_StartPoint.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Circle_Edge.svg b/icons/themed/Sketcher_Element_Circle_Edge.svg new file mode 100644 index 0000000000..efd71f8634 --- /dev/null +++ b/icons/themed/Sketcher_Element_Circle_Edge.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Circle_MidPoint.svg b/icons/themed/Sketcher_Element_Circle_MidPoint.svg new file mode 100644 index 0000000000..4f83099692 --- /dev/null +++ b/icons/themed/Sketcher_Element_Circle_MidPoint.svg @@ -0,0 +1,306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_All.svg b/icons/themed/Sketcher_Element_Ellipse_All.svg new file mode 100644 index 0000000000..31b65062b6 --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_All.svg @@ -0,0 +1,551 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_CentrePoint.svg b/icons/themed/Sketcher_Element_Ellipse_CentrePoint.svg new file mode 100644 index 0000000000..6a4c80b3e9 --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_CentrePoint.svg @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_Edge_1.svg b/icons/themed/Sketcher_Element_Ellipse_Edge_1.svg new file mode 100644 index 0000000000..6888bd0c85 --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_Edge_1.svg @@ -0,0 +1,561 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_Edge_2.svg b/icons/themed/Sketcher_Element_Ellipse_Edge_2.svg new file mode 100644 index 0000000000..fca4b9d3d8 --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_Edge_2.svg @@ -0,0 +1,517 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_Focus1.svg b/icons/themed/Sketcher_Element_Ellipse_Focus1.svg new file mode 100644 index 0000000000..e82c0e77ce --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_Focus1.svg @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_Focus2.svg b/icons/themed/Sketcher_Element_Ellipse_Focus2.svg new file mode 100644 index 0000000000..dff6427079 --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_Focus2.svg @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_MajorAxis.svg b/icons/themed/Sketcher_Element_Ellipse_MajorAxis.svg new file mode 100644 index 0000000000..7a23f93842 --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_MajorAxis.svg @@ -0,0 +1,565 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Ellipse_MinorAxis.svg b/icons/themed/Sketcher_Element_Ellipse_MinorAxis.svg new file mode 100644 index 0000000000..729c7a900d --- /dev/null +++ b/icons/themed/Sketcher_Element_Ellipse_MinorAxis.svg @@ -0,0 +1,564 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Elliptical_Arc_Centre_Point.svg b/icons/themed/Sketcher_Element_Elliptical_Arc_Centre_Point.svg new file mode 100644 index 0000000000..2669f80e39 --- /dev/null +++ b/icons/themed/Sketcher_Element_Elliptical_Arc_Centre_Point.svg @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Elliptical_Arc_Edge.svg b/icons/themed/Sketcher_Element_Elliptical_Arc_Edge.svg new file mode 100644 index 0000000000..ddfbc76442 --- /dev/null +++ b/icons/themed/Sketcher_Element_Elliptical_Arc_Edge.svg @@ -0,0 +1,514 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Elliptical_Arc_End_Point.svg b/icons/themed/Sketcher_Element_Elliptical_Arc_End_Point.svg new file mode 100644 index 0000000000..0931729106 --- /dev/null +++ b/icons/themed/Sketcher_Element_Elliptical_Arc_End_Point.svg @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Elliptical_Arc_Start_Point.svg b/icons/themed/Sketcher_Element_Elliptical_Arc_Start_Point.svg new file mode 100644 index 0000000000..962934f240 --- /dev/null +++ b/icons/themed/Sketcher_Element_Elliptical_Arc_Start_Point.svg @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Hyperbolic_Arc_Centre_Point.svg b/icons/themed/Sketcher_Element_Hyperbolic_Arc_Centre_Point.svg new file mode 100644 index 0000000000..786a0be268 --- /dev/null +++ b/icons/themed/Sketcher_Element_Hyperbolic_Arc_Centre_Point.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Hyperbolic_Arc_Edge.svg b/icons/themed/Sketcher_Element_Hyperbolic_Arc_Edge.svg new file mode 100644 index 0000000000..c44cde7c20 --- /dev/null +++ b/icons/themed/Sketcher_Element_Hyperbolic_Arc_Edge.svg @@ -0,0 +1,563 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Hyperbolic_Arc_End_Point.svg b/icons/themed/Sketcher_Element_Hyperbolic_Arc_End_Point.svg new file mode 100644 index 0000000000..1164c6e64b --- /dev/null +++ b/icons/themed/Sketcher_Element_Hyperbolic_Arc_End_Point.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Hyperbolic_Arc_Start_Point.svg b/icons/themed/Sketcher_Element_Hyperbolic_Arc_Start_Point.svg new file mode 100644 index 0000000000..f637aee6b0 --- /dev/null +++ b/icons/themed/Sketcher_Element_Hyperbolic_Arc_Start_Point.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Line_Edge.svg b/icons/themed/Sketcher_Element_Line_Edge.svg new file mode 100644 index 0000000000..03832923c1 --- /dev/null +++ b/icons/themed/Sketcher_Element_Line_Edge.svg @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Line_EndPoint.svg b/icons/themed/Sketcher_Element_Line_EndPoint.svg new file mode 100644 index 0000000000..b55ffb43f8 --- /dev/null +++ b/icons/themed/Sketcher_Element_Line_EndPoint.svg @@ -0,0 +1,532 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Line_StartingPoint.svg b/icons/themed/Sketcher_Element_Line_StartingPoint.svg new file mode 100644 index 0000000000..02ea38031a --- /dev/null +++ b/icons/themed/Sketcher_Element_Line_StartingPoint.svg @@ -0,0 +1,532 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Parabolic_Arc_Centre_Point.svg b/icons/themed/Sketcher_Element_Parabolic_Arc_Centre_Point.svg new file mode 100644 index 0000000000..3c9856701b --- /dev/null +++ b/icons/themed/Sketcher_Element_Parabolic_Arc_Centre_Point.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Parabolic_Arc_Edge.svg b/icons/themed/Sketcher_Element_Parabolic_Arc_Edge.svg new file mode 100644 index 0000000000..32df818a05 --- /dev/null +++ b/icons/themed/Sketcher_Element_Parabolic_Arc_Edge.svg @@ -0,0 +1,563 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Parabolic_Arc_End_Point.svg b/icons/themed/Sketcher_Element_Parabolic_Arc_End_Point.svg new file mode 100644 index 0000000000..1933abed1e --- /dev/null +++ b/icons/themed/Sketcher_Element_Parabolic_Arc_End_Point.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Parabolic_Arc_Start_Point.svg b/icons/themed/Sketcher_Element_Parabolic_Arc_Start_Point.svg new file mode 100644 index 0000000000..5382a95d25 --- /dev/null +++ b/icons/themed/Sketcher_Element_Parabolic_Arc_Start_Point.svg @@ -0,0 +1,572 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_Point_StartingPoint.svg b/icons/themed/Sketcher_Element_Point_StartingPoint.svg new file mode 100644 index 0000000000..6df2ddfbe3 --- /dev/null +++ b/icons/themed/Sketcher_Element_Point_StartingPoint.svg @@ -0,0 +1,410 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + diff --git a/icons/themed/Sketcher_Element_SelectionTypeInvalid.svg b/icons/themed/Sketcher_Element_SelectionTypeInvalid.svg new file mode 100644 index 0000000000..41f0caff6f --- /dev/null +++ b/icons/themed/Sketcher_Element_SelectionTypeInvalid.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2014-08-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Element_SelectionTypeInvalid.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + diff --git a/icons/themed/Sketcher_Extend.svg b/icons/themed/Sketcher_Extend.svg new file mode 100644 index 0000000000..d429501e4c --- /dev/null +++ b/icons/themed/Sketcher_Extend.svg @@ -0,0 +1,314 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Intersection.svg b/icons/themed/Sketcher_Intersection.svg new file mode 100644 index 0000000000..bbb8a0bc01 --- /dev/null +++ b/icons/themed/Sketcher_Intersection.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Intersection_Constr.svg b/icons/themed/Sketcher_Intersection_Constr.svg new file mode 100644 index 0000000000..c6128afdb6 --- /dev/null +++ b/icons/themed/Sketcher_Intersection_Constr.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_JoinCurves.svg b/icons/themed/Sketcher_JoinCurves.svg new file mode 100644 index 0000000000..50d3db7249 --- /dev/null +++ b/icons/themed/Sketcher_JoinCurves.svg @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_LeaveSketch.svg b/icons/themed/Sketcher_LeaveSketch.svg new file mode 100644 index 0000000000..71283ddb59 --- /dev/null +++ b/icons/themed/Sketcher_LeaveSketch.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_LeaveSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_MapSketch.svg b/icons/themed/Sketcher_MapSketch.svg new file mode 100644 index 0000000000..f800a03e07 --- /dev/null +++ b/icons/themed/Sketcher_MapSketch.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2012-12-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_MapSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_MergeSketch.svg b/icons/themed/Sketcher_MergeSketch.svg new file mode 100644 index 0000000000..ebd929b071 --- /dev/null +++ b/icons/themed/Sketcher_MergeSketch.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2014-11-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_MergeSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_MirrorSketch.svg b/icons/themed/Sketcher_MirrorSketch.svg new file mode 100644 index 0000000000..6c3c57659f --- /dev/null +++ b/icons/themed/Sketcher_MirrorSketch.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-08-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_MirrorSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Move.svg b/icons/themed/Sketcher_Move.svg new file mode 100644 index 0000000000..32aff85f3f --- /dev/null +++ b/icons/themed/Sketcher_Move.svg @@ -0,0 +1,455 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_NewSketch.svg b/icons/themed/Sketcher_NewSketch.svg new file mode 100644 index 0000000000..7e16c921ca --- /dev/null +++ b/icons/themed/Sketcher_NewSketch.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_NewSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_NotFullyConstrained.svg b/icons/themed/Sketcher_NotFullyConstrained.svg new file mode 100644 index 0000000000..bab84197f5 --- /dev/null +++ b/icons/themed/Sketcher_NotFullyConstrained.svg @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + diff --git a/icons/themed/Sketcher_Offset.svg b/icons/themed/Sketcher_Offset.svg new file mode 100644 index 0000000000..56fd9e9b98 --- /dev/null +++ b/icons/themed/Sketcher_Offset.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_OffsetArc.svg b/icons/themed/Sketcher_OffsetArc.svg new file mode 100644 index 0000000000..98ece9cefd --- /dev/null +++ b/icons/themed/Sketcher_OffsetArc.svg @@ -0,0 +1,390 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_OffsetIntersection.svg b/icons/themed/Sketcher_OffsetIntersection.svg new file mode 100644 index 0000000000..55fc562e2e --- /dev/null +++ b/icons/themed/Sketcher_OffsetIntersection.svg @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_CarbonCopy.svg b/icons/themed/Sketcher_Pointer_CarbonCopy.svg new file mode 100644 index 0000000000..c5d5adbdd2 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_CarbonCopy.svg @@ -0,0 +1,127 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_3PointArc.svg b/icons/themed/Sketcher_Pointer_Create_3PointArc.svg new file mode 100644 index 0000000000..d7ca23bf30 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_3PointArc.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_3PointCircle.svg b/icons/themed/Sketcher_Pointer_Create_3PointCircle.svg new file mode 100644 index 0000000000..49b80306a9 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_3PointCircle.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Arc.svg b/icons/themed/Sketcher_Pointer_Create_Arc.svg new file mode 100644 index 0000000000..3157913d12 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Arc.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_ArcOfEllipse.svg b/icons/themed/Sketcher_Pointer_Create_ArcOfEllipse.svg new file mode 100644 index 0000000000..d5eaf2fe19 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_ArcOfEllipse.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_ArcOfHyperbola.svg b/icons/themed/Sketcher_Pointer_Create_ArcOfHyperbola.svg new file mode 100644 index 0000000000..15710d58f5 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_ArcOfHyperbola.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_ArcOfParabola.svg b/icons/themed/Sketcher_Pointer_Create_ArcOfParabola.svg new file mode 100644 index 0000000000..5a2b6bcedc --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_ArcOfParabola.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_ArcSlot.svg b/icons/themed/Sketcher_Pointer_Create_ArcSlot.svg new file mode 100644 index 0000000000..d7cd0fd749 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_ArcSlot.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_BSpline.svg b/icons/themed/Sketcher_Pointer_Create_BSpline.svg new file mode 100644 index 0000000000..4e7e1a4850 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_BSpline.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_BSplineByInterpolation.svg b/icons/themed/Sketcher_Pointer_Create_BSplineByInterpolation.svg new file mode 100644 index 0000000000..2212b09dc8 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_BSplineByInterpolation.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Box.svg b/icons/themed/Sketcher_Pointer_Create_Box.svg new file mode 100644 index 0000000000..fa1aca607b --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Box.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Box_3Points.svg b/icons/themed/Sketcher_Pointer_Create_Box_3Points.svg new file mode 100644 index 0000000000..b867e618ba --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Box_3Points.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Box_3Points_Center.svg b/icons/themed/Sketcher_Pointer_Create_Box_3Points_Center.svg new file mode 100644 index 0000000000..643bfae6be --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Box_3Points_Center.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Box_Center.svg b/icons/themed/Sketcher_Pointer_Create_Box_Center.svg new file mode 100644 index 0000000000..61aa0227dd --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Box_Center.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Chamfer.svg b/icons/themed/Sketcher_Pointer_Create_Chamfer.svg new file mode 100644 index 0000000000..c3e5948ec9 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Chamfer.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Circle.svg b/icons/themed/Sketcher_Pointer_Create_Circle.svg new file mode 100644 index 0000000000..d8ccdca5dc --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Circle.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_EllipseByCenter.svg b/icons/themed/Sketcher_Pointer_Create_EllipseByCenter.svg new file mode 100644 index 0000000000..e4c1bee1f3 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_EllipseByCenter.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Ellipse_3points.svg b/icons/themed/Sketcher_Pointer_Create_Ellipse_3points.svg new file mode 100644 index 0000000000..06405edf83 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Ellipse_3points.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Fillet.svg b/icons/themed/Sketcher_Pointer_Create_Fillet.svg new file mode 100644 index 0000000000..6fa33f0bc9 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Fillet.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Frame.svg b/icons/themed/Sketcher_Pointer_Create_Frame.svg new file mode 100644 index 0000000000..3aea924c64 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Frame.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Frame_Center.svg b/icons/themed/Sketcher_Pointer_Create_Frame_Center.svg new file mode 100644 index 0000000000..29365865bc --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Frame_Center.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Line.svg b/icons/themed/Sketcher_Pointer_Create_Line.svg new file mode 100644 index 0000000000..c396499d63 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Line.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Line_Polar.svg b/icons/themed/Sketcher_Pointer_Create_Line_Polar.svg new file mode 100644 index 0000000000..7f30c42022 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Line_Polar.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Lineset.svg b/icons/themed/Sketcher_Pointer_Create_Lineset.svg new file mode 100644 index 0000000000..62b72f106f --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Lineset.svg @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Offset.svg b/icons/themed/Sketcher_Pointer_Create_Offset.svg new file mode 100644 index 0000000000..2699205efb --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Offset.svg @@ -0,0 +1,55 @@ + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Periodic_BSpline.svg b/icons/themed/Sketcher_Pointer_Create_Periodic_BSpline.svg new file mode 100644 index 0000000000..c73dce6ec8 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Periodic_BSpline.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg b/icons/themed/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg new file mode 100644 index 0000000000..161f870c2f --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Point.svg b/icons/themed/Sketcher_Pointer_Create_Point.svg new file mode 100644 index 0000000000..7004a14d94 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Point.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_PointChamfer.svg b/icons/themed/Sketcher_Pointer_Create_PointChamfer.svg new file mode 100644 index 0000000000..9ae77ce2c6 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_PointChamfer.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_PointFillet.svg b/icons/themed/Sketcher_Pointer_Create_PointFillet.svg new file mode 100644 index 0000000000..e569a7e8f3 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_PointFillet.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_RectangleSlot.svg b/icons/themed/Sketcher_Pointer_Create_RectangleSlot.svg new file mode 100644 index 0000000000..f727729063 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_RectangleSlot.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Rotate.svg b/icons/themed/Sketcher_Pointer_Create_Rotate.svg new file mode 100644 index 0000000000..f5e5678259 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Rotate.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Scale.svg b/icons/themed/Sketcher_Pointer_Create_Scale.svg new file mode 100644 index 0000000000..d79572f2bb --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Scale.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Symmetry.svg b/icons/themed/Sketcher_Pointer_Create_Symmetry.svg new file mode 100644 index 0000000000..75a472f19a --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Symmetry.svg @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Create_Translate.svg b/icons/themed/Sketcher_Pointer_Create_Translate.svg new file mode 100644 index 0000000000..7035b34933 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Create_Translate.svg @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Extension.svg b/icons/themed/Sketcher_Pointer_Extension.svg new file mode 100644 index 0000000000..c6983875cc --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Extension.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_External.svg b/icons/themed/Sketcher_Pointer_External.svg new file mode 100644 index 0000000000..8682a5c609 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_External.svg @@ -0,0 +1,72 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_External_Intersection.svg b/icons/themed/Sketcher_Pointer_External_Intersection.svg new file mode 100644 index 0000000000..3f28829aa0 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_External_Intersection.svg @@ -0,0 +1,70 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Heptagon.svg b/icons/themed/Sketcher_Pointer_Heptagon.svg new file mode 100644 index 0000000000..3e81a84a98 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Heptagon.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Hexagon.svg b/icons/themed/Sketcher_Pointer_Hexagon.svg new file mode 100644 index 0000000000..2121ff495d --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Hexagon.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_InsertKnot.svg b/icons/themed/Sketcher_Pointer_InsertKnot.svg new file mode 100644 index 0000000000..b7765de43f --- /dev/null +++ b/icons/themed/Sketcher_Pointer_InsertKnot.svg @@ -0,0 +1,97 @@ + + + + Sketcher_PointerInsertKnot + + + + image/svg+xml + + Sketcher_PointerInsertKnot + 17-02-2022 + + + bitacovir + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Oblong.svg b/icons/themed/Sketcher_Pointer_Oblong.svg new file mode 100644 index 0000000000..e6e6858c71 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Oblong.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Oblong_Center.svg b/icons/themed/Sketcher_Pointer_Oblong_Center.svg new file mode 100644 index 0000000000..94028563ba --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Oblong_Center.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Oblong_Frame.svg b/icons/themed/Sketcher_Pointer_Oblong_Frame.svg new file mode 100644 index 0000000000..3d489545ba --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Oblong_Frame.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Oblong_Frame_Center.svg b/icons/themed/Sketcher_Pointer_Oblong_Frame_Center.svg new file mode 100644 index 0000000000..2dd586aaaf --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Oblong_Frame_Center.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Octagon.svg b/icons/themed/Sketcher_Pointer_Octagon.svg new file mode 100644 index 0000000000..7420a846b7 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Octagon.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Pentagon.svg b/icons/themed/Sketcher_Pointer_Pentagon.svg new file mode 100644 index 0000000000..d6d2f25037 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Pentagon.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Regular_Polygon.svg b/icons/themed/Sketcher_Pointer_Regular_Polygon.svg new file mode 100644 index 0000000000..ff7c1a0730 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Regular_Polygon.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Slot.svg b/icons/themed/Sketcher_Pointer_Slot.svg new file mode 100644 index 0000000000..bb96933fec --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Slot.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Splitting.svg b/icons/themed/Sketcher_Pointer_Splitting.svg new file mode 100644 index 0000000000..1bf8586850 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Splitting.svg @@ -0,0 +1,101 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Text.svg b/icons/themed/Sketcher_Pointer_Text.svg new file mode 100644 index 0000000000..397f105495 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Text.svg @@ -0,0 +1,85 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Triangle.svg b/icons/themed/Sketcher_Pointer_Triangle.svg new file mode 100644 index 0000000000..8bb3365113 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Triangle.svg @@ -0,0 +1,87 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Pointer_Trimming.svg b/icons/themed/Sketcher_Pointer_Trimming.svg new file mode 100644 index 0000000000..494423ac45 --- /dev/null +++ b/icons/themed/Sketcher_Pointer_Trimming.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ProfilesHexagon1.svg b/icons/themed/Sketcher_ProfilesHexagon1.svg new file mode 100644 index 0000000000..f5a0ccc20d --- /dev/null +++ b/icons/themed/Sketcher_ProfilesHexagon1.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Sketcher_ProfilesHexagon1 + 2014-06-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ProfilesHexagon1.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Projection.svg b/icons/themed/Sketcher_Projection.svg new file mode 100644 index 0000000000..2d3902a8b0 --- /dev/null +++ b/icons/themed/Sketcher_Projection.svg @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Projection_Constr.svg b/icons/themed/Sketcher_Projection_Constr.svg new file mode 100644 index 0000000000..f2222ab920 --- /dev/null +++ b/icons/themed/Sketcher_Projection_Constr.svg @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_RectangularArray.svg b/icons/themed/Sketcher_RectangularArray.svg new file mode 100644 index 0000000000..cf51ac0a54 --- /dev/null +++ b/icons/themed/Sketcher_RectangularArray.svg @@ -0,0 +1,585 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_RemoveAxesAlignment.svg b/icons/themed/Sketcher_RemoveAxesAlignment.svg new file mode 100644 index 0000000000..267f9c448b --- /dev/null +++ b/icons/themed/Sketcher_RemoveAxesAlignment.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ReorientSketch.svg b/icons/themed/Sketcher_ReorientSketch.svg new file mode 100644 index 0000000000..b3c265b44e --- /dev/null +++ b/icons/themed/Sketcher_ReorientSketch.svg @@ -0,0 +1,159 @@ + + + Sketcher_ReorientSketch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Sketcher_ReorientSketch + + + [vocx] + + + Sketcher_MergeSketch + 2020-09-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ReorientSketch.svg + + + CC-BY-SA 4.0 + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + A coordinate axis system with three axes (red, blue, green) and three gray planes, next to a red sketch (square and circle). It was created from the 'MergeSketch' and 'Std_CoordinateSystem' icons. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Rotate.svg b/icons/themed/Sketcher_Rotate.svg new file mode 100644 index 0000000000..b8ea54784a --- /dev/null +++ b/icons/themed/Sketcher_Rotate.svg @@ -0,0 +1,859 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-08-11 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Movy.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, vocx + + + A faded curve with two vertices, an arrow pointing right, to a colored curve with red vertices, indicating that the object was moved from one location to the other. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Scale.svg b/icons/themed/Sketcher_Scale.svg new file mode 100644 index 0000000000..272f98cbba --- /dev/null +++ b/icons/themed/Sketcher_Scale.svg @@ -0,0 +1,1004 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-08-11 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Movy.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson, vocx + + + A faded curve with two vertices, an arrow pointing right, to a colored curve with red vertices, indicating that the object was moved from one location to the other. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectConflictingConstraints.svg b/icons/themed/Sketcher_SelectConflictingConstraints.svg new file mode 100644 index 0000000000..31090e8b3e --- /dev/null +++ b/icons/themed/Sketcher_SelectConflictingConstraints.svg @@ -0,0 +1,565 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectConstraints.svg b/icons/themed/Sketcher_SelectConstraints.svg new file mode 100644 index 0000000000..b6569d1dd0 --- /dev/null +++ b/icons/themed/Sketcher_SelectConstraints.svg @@ -0,0 +1,525 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectElementsAssociatedWithConstraints.svg b/icons/themed/Sketcher_SelectElementsAssociatedWithConstraints.svg new file mode 100644 index 0000000000..b490a11160 --- /dev/null +++ b/icons/themed/Sketcher_SelectElementsAssociatedWithConstraints.svg @@ -0,0 +1,549 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectElementsWithDoFs.svg b/icons/themed/Sketcher_SelectElementsWithDoFs.svg new file mode 100644 index 0000000000..6558e6292e --- /dev/null +++ b/icons/themed/Sketcher_SelectElementsWithDoFs.svg @@ -0,0 +1,528 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectHorizontalAxis.svg b/icons/themed/Sketcher_SelectHorizontalAxis.svg new file mode 100644 index 0000000000..a0a669dd99 --- /dev/null +++ b/icons/themed/Sketcher_SelectHorizontalAxis.svg @@ -0,0 +1,439 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectOrigin.svg b/icons/themed/Sketcher_SelectOrigin.svg new file mode 100644 index 0000000000..77973cfc51 --- /dev/null +++ b/icons/themed/Sketcher_SelectOrigin.svg @@ -0,0 +1,444 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectRedundantConstraints.svg b/icons/themed/Sketcher_SelectRedundantConstraints.svg new file mode 100644 index 0000000000..604cc5e249 --- /dev/null +++ b/icons/themed/Sketcher_SelectRedundantConstraints.svg @@ -0,0 +1,579 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SelectVerticalAxis.svg b/icons/themed/Sketcher_SelectVerticalAxis.svg new file mode 100644 index 0000000000..0899ff3d95 --- /dev/null +++ b/icons/themed/Sketcher_SelectVerticalAxis.svg @@ -0,0 +1,439 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Settings.svg b/icons/themed/Sketcher_Settings.svg new file mode 100644 index 0000000000..aaeb7075cc --- /dev/null +++ b/icons/themed/Sketcher_Settings.svg @@ -0,0 +1,396 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + Preferences System + + + preferences + settings + control panel + tweaks + system + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Sketch.svg b/icons/themed/Sketcher_Sketch.svg new file mode 100644 index 0000000000..61acdddc47 --- /dev/null +++ b/icons/themed/Sketcher_Sketch.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Sketcher_Sketch + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Sketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Split.svg b/icons/themed/Sketcher_Split.svg new file mode 100644 index 0000000000..fbb2c4c21b --- /dev/null +++ b/icons/themed/Sketcher_Split.svg @@ -0,0 +1,360 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_SwitchVirtualSpace.svg b/icons/themed/Sketcher_SwitchVirtualSpace.svg new file mode 100644 index 0000000000..344fcacca8 --- /dev/null +++ b/icons/themed/Sketcher_SwitchVirtualSpace.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2014-11-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_MergeSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Symmetry.svg b/icons/themed/Sketcher_Symmetry.svg new file mode 100644 index 0000000000..dc1a6814f2 --- /dev/null +++ b/icons/themed/Sketcher_Symmetry.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleActiveConstraint.svg b/icons/themed/Sketcher_ToggleActiveConstraint.svg new file mode 100644 index 0000000000..07e062f7a0 --- /dev/null +++ b/icons/themed/Sketcher_ToggleActiveConstraint.svg @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleConstraint.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleConstraint.svg b/icons/themed/Sketcher_ToggleConstraint.svg new file mode 100644 index 0000000000..b9b55cf5c2 --- /dev/null +++ b/icons/themed/Sketcher_ToggleConstraint.svg @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleConstraint.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleConstraint_Driven.svg b/icons/themed/Sketcher_ToggleConstraint_Driven.svg new file mode 100644 index 0000000000..c1ca4541bd --- /dev/null +++ b/icons/themed/Sketcher_ToggleConstraint_Driven.svg @@ -0,0 +1,454 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleConstraint.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleConstruction.svg b/icons/themed/Sketcher_ToggleConstruction.svg new file mode 100644 index 0000000000..e8d094161b --- /dev/null +++ b/icons/themed/Sketcher_ToggleConstruction.svg @@ -0,0 +1,735 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleConstruction.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson +[JoshuaCall] + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleConstruction_Constr.svg b/icons/themed/Sketcher_ToggleConstruction_Constr.svg new file mode 100644 index 0000000000..d706b1ca05 --- /dev/null +++ b/icons/themed/Sketcher_ToggleConstruction_Constr.svg @@ -0,0 +1,708 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleConstruction.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson +[JoshuaCall] + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleConstruction_old.svg b/icons/themed/Sketcher_ToggleConstruction_old.svg new file mode 100644 index 0000000000..0106078282 --- /dev/null +++ b/icons/themed/Sketcher_ToggleConstruction_old.svg @@ -0,0 +1,301 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Abdullah Tahiri] + + + Sketcher_ToggleConstruction_old + 2015-05-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleConstruction_old.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson +[JoshuaCall] + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ToggleNormal.svg b/icons/themed/Sketcher_ToggleNormal.svg new file mode 100644 index 0000000000..87312ade83 --- /dev/null +++ b/icons/themed/Sketcher_ToggleNormal.svg @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Abdullah Tahiri] + + + Sketcher_ToggleNormal + 2015-05-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ToggleNormal.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Toggle_Constraint_Driven.svg b/icons/themed/Sketcher_Toggle_Constraint_Driven.svg new file mode 100644 index 0000000000..2aa028d617 --- /dev/null +++ b/icons/themed/Sketcher_Toggle_Constraint_Driven.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Toggle_Constraint_Driven.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Toggle_Constraint_Driving.svg b/icons/themed/Sketcher_Toggle_Constraint_Driving.svg new file mode 100644 index 0000000000..3d5a7f98da --- /dev/null +++ b/icons/themed/Sketcher_Toggle_Constraint_Driving.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Abdullah Tahiri] + + + 2015-05-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Toggle_Constraint_Driving.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Translate.svg b/icons/themed/Sketcher_Translate.svg new file mode 100644 index 0000000000..cf51ac0a54 --- /dev/null +++ b/icons/themed/Sketcher_Translate.svg @@ -0,0 +1,585 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_Trimming.svg b/icons/themed/Sketcher_Trimming.svg new file mode 100644 index 0000000000..2b65856ec9 --- /dev/null +++ b/icons/themed/Sketcher_Trimming.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ValidateSketch.svg b/icons/themed/Sketcher_ValidateSketch.svg new file mode 100644 index 0000000000..2434d29854 --- /dev/null +++ b/icons/themed/Sketcher_ValidateSketch.svg @@ -0,0 +1,111 @@ + + + Sketcher_ValidateSketch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Sketcher_ValidateSketch + + + [vocx] + + + Sketcher_NewSketch + 2020-09-25 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ValidateSketch.svg + + + FreeCAD CC-BY-SA 4.0 + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + A white page, with a red sketch (square and circle), and a green circle with a white arrow inside of it. It is composed from the 'NewSketch' icon, and the 'button_valid' icon. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ViewSection.svg b/icons/themed/Sketcher_ViewSection.svg new file mode 100644 index 0000000000..ba14da734d --- /dev/null +++ b/icons/themed/Sketcher_ViewSection.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Part_Section.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Sketcher_ViewSketch.svg b/icons/themed/Sketcher_ViewSketch.svg new file mode 100644 index 0000000000..b2276a6084 --- /dev/null +++ b/icons/themed/Sketcher_ViewSketch.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + 2012-12-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_ViewSketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpNav-PanLR.svg b/icons/themed/SpNav-PanLR.svg new file mode 100644 index 0000000000..2f84770c1a --- /dev/null +++ b/icons/themed/SpNav-PanLR.svg @@ -0,0 +1,766 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpNav-PanUD.svg b/icons/themed/SpNav-PanUD.svg new file mode 100644 index 0000000000..e95b85eac0 --- /dev/null +++ b/icons/themed/SpNav-PanUD.svg @@ -0,0 +1,749 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpNav-Roll.svg b/icons/themed/SpNav-Roll.svg new file mode 100644 index 0000000000..6ed89b167b --- /dev/null +++ b/icons/themed/SpNav-Roll.svg @@ -0,0 +1,737 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpNav-Spin.svg b/icons/themed/SpNav-Spin.svg new file mode 100644 index 0000000000..a5a66b5c97 --- /dev/null +++ b/icons/themed/SpNav-Spin.svg @@ -0,0 +1,736 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpNav-Tilt.svg b/icons/themed/SpNav-Tilt.svg new file mode 100644 index 0000000000..157c06dfc4 --- /dev/null +++ b/icons/themed/SpNav-Tilt.svg @@ -0,0 +1,736 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpNav-Zoom.svg b/icons/themed/SpNav-Zoom.svg new file mode 100644 index 0000000000..f386baadd2 --- /dev/null +++ b/icons/themed/SpNav-Zoom.svg @@ -0,0 +1,743 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Spreadsheet.svg b/icons/themed/Spreadsheet.svg new file mode 100644 index 0000000000..fe31d336b9 --- /dev/null +++ b/icons/themed/Spreadsheet.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/Spreadsheet.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlias.svg b/icons/themed/SpreadsheetAlias.svg new file mode 100644 index 0000000000..2ff1f7f8ba --- /dev/null +++ b/icons/themed/SpreadsheetAlias.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Eivind Kvedalen] + + + SpreadsheetAlias + 2015-09-30 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlias.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlignBottom.svg b/icons/themed/SpreadsheetAlignBottom.svg new file mode 100644 index 0000000000..50940e6566 --- /dev/null +++ b/icons/themed/SpreadsheetAlignBottom.svg @@ -0,0 +1,126 @@ + + + + + SpreadsheetAlignBottom + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + SpreadsheetAlignBottom + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlignBottom.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlignCenter.svg b/icons/themed/SpreadsheetAlignCenter.svg new file mode 100644 index 0000000000..4d41412bdb --- /dev/null +++ b/icons/themed/SpreadsheetAlignCenter.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlignLeft.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlignLeft.svg b/icons/themed/SpreadsheetAlignLeft.svg new file mode 100644 index 0000000000..3d62ca4e4f --- /dev/null +++ b/icons/themed/SpreadsheetAlignLeft.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlignLeft.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlignRight.svg b/icons/themed/SpreadsheetAlignRight.svg new file mode 100644 index 0000000000..a268c25a8e --- /dev/null +++ b/icons/themed/SpreadsheetAlignRight.svg @@ -0,0 +1,137 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlignLeft.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlignTop.svg b/icons/themed/SpreadsheetAlignTop.svg new file mode 100644 index 0000000000..588b95d3ea --- /dev/null +++ b/icons/themed/SpreadsheetAlignTop.svg @@ -0,0 +1,127 @@ + + + + + SpreadsheetAlignBottom + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + SpreadsheetAlignBottom + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlignBottom.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetAlignVCenter.svg b/icons/themed/SpreadsheetAlignVCenter.svg new file mode 100644 index 0000000000..5ddaa310a8 --- /dev/null +++ b/icons/themed/SpreadsheetAlignVCenter.svg @@ -0,0 +1,127 @@ + + + + + SpreadsheetAlignBottom + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + SpreadsheetAlignBottom + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetAlignBottom.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetController.svg b/icons/themed/SpreadsheetController.svg new file mode 100644 index 0000000000..99f8f645af --- /dev/null +++ b/icons/themed/SpreadsheetController.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/Spreadsheet.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetExport.svg b/icons/themed/SpreadsheetExport.svg new file mode 100644 index 0000000000..8667fc1782 --- /dev/null +++ b/icons/themed/SpreadsheetExport.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetImport.svg b/icons/themed/SpreadsheetImport.svg new file mode 100644 index 0000000000..2c56feea56 --- /dev/null +++ b/icons/themed/SpreadsheetImport.svg @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetMergeCells.svg b/icons/themed/SpreadsheetMergeCells.svg new file mode 100644 index 0000000000..658cb010cb --- /dev/null +++ b/icons/themed/SpreadsheetMergeCells.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetMergeCells.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetPropertyController.svg b/icons/themed/SpreadsheetPropertyController.svg new file mode 100644 index 0000000000..b6468e4999 --- /dev/null +++ b/icons/themed/SpreadsheetPropertyController.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + SpreadsheetPropertyController + 2014-03-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Resources/icons/SpreadsheetPropertyController.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetSplitCell.svg b/icons/themed/SpreadsheetSplitCell.svg new file mode 100644 index 0000000000..a1bf4d469d --- /dev/null +++ b/icons/themed/SpreadsheetSplitCell.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetMergeCells.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetStyleBold.svg b/icons/themed/SpreadsheetStyleBold.svg new file mode 100644 index 0000000000..82e4c3a5fe --- /dev/null +++ b/icons/themed/SpreadsheetStyleBold.svg @@ -0,0 +1,338 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Bold + 2006-01-04 + + + Lapo Calamandrei + + + http://tango-project.org + + + text + a + bold + write + letter + + + + + + Andreas Nilsson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetStyleItalic.svg b/icons/themed/SpreadsheetStyleItalic.svg new file mode 100644 index 0000000000..a0d658500e --- /dev/null +++ b/icons/themed/SpreadsheetStyleItalic.svg @@ -0,0 +1,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Italic + 2006-01-04 + + + Lapo Calamandrei + + + http://tango-project.org + + + text + a + italic + cursive + write + letter + + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetStyleItalic.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetStyleUnderline.svg b/icons/themed/SpreadsheetStyleUnderline.svg new file mode 100644 index 0000000000..1dfbbe6bad --- /dev/null +++ b/icons/themed/SpreadsheetStyleUnderline.svg @@ -0,0 +1,141 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Format Text - Underlined + + + + Lapo Calamandrei + + + http://tango-project.org + + + text + a + strikeout + strike-out + write + letter + strike-though + + + + + + jakub Steiner, [agryson] Alexander Gryson + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/SpreadsheetStyleUnderline.svg + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/SpreadsheetWorkbench.svg b/icons/themed/SpreadsheetWorkbench.svg new file mode 100644 index 0000000000..fe31d336b9 --- /dev/null +++ b/icons/themed/SpreadsheetWorkbench.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/Spreadsheet.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/StartCommandIcon.svg b/icons/themed/StartCommandIcon.svg new file mode 100644 index 0000000000..b1b73d89e6 --- /dev/null +++ b/icons/themed/StartCommandIcon.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [triplus] + + + StartWorkbench + 2016-02-26 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Start/Gui/Resources/icons/StartWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + right + + + Arrow pointing towards the right + + + + + + + + diff --git a/icons/themed/Std_Alignment.svg b/icons/themed/Std_Alignment.svg new file mode 100644 index 0000000000..b97cb1dc07 --- /dev/null +++ b/icons/themed/Std_Alignment.svg @@ -0,0 +1,308 @@ + + + Std_Alignment + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_Alignment + Path-Stock + 2020/10/04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Alexander Gryson's work + + + + + [bitacovir] + + + + + shapes + arrow + + + Alignment of shapes + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Axis.svg b/icons/themed/Std_Axis.svg new file mode 100644 index 0000000000..08dc1c0ab5 --- /dev/null +++ b/icons/themed/Std_Axis.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_Sketch + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Sketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Std_AxisCross.svg b/icons/themed/Std_AxisCross.svg new file mode 100644 index 0000000000..7435fa4520 --- /dev/null +++ b/icons/themed/Std_AxisCross.svg @@ -0,0 +1,231 @@ + + + Std_AxisCross + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_AxisCross + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + 2020/12/20 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_CloseActiveWindow.svg b/icons/themed/Std_CloseActiveWindow.svg new file mode 100644 index 0000000000..89493861f7 --- /dev/null +++ b/icons/themed/Std_CloseActiveWindow.svg @@ -0,0 +1,204 @@ + + + Std_CloseActiveWindow + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_CloseActiveWindow + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/11/28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + cross + + + orange box with a cross + + + + + + + + + + + + diff --git a/icons/themed/Std_CloseAllWindows.svg b/icons/themed/Std_CloseAllWindows.svg new file mode 100644 index 0000000000..15bd4d95d4 --- /dev/null +++ b/icons/themed/Std_CloseAllWindows.svg @@ -0,0 +1,248 @@ + + + Std_CloseAllWindows + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_CloseAllWindows + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/11/28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + cross + + + Double orange box with a cross + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_CoordinateSystem.svg b/icons/themed/Std_CoordinateSystem.svg new file mode 100644 index 0000000000..91e6f9b1b6 --- /dev/null +++ b/icons/themed/Std_CoordinateSystem.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_CoordinateSystem_alt.svg b/icons/themed/Std_CoordinateSystem_alt.svg new file mode 100644 index 0000000000..c25d2d2d97 --- /dev/null +++ b/icons/themed/Std_CoordinateSystem_alt.svg @@ -0,0 +1,375 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Sketcher_Sketch + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Sketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_DemoMode.svg b/icons/themed/Std_DemoMode.svg new file mode 100644 index 0000000000..fb01706dda --- /dev/null +++ b/icons/themed/Std_DemoMode.svg @@ -0,0 +1,325 @@ + + + Std_DemoMode + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_DemoMode + + + [watsug] + + + Part_Shape_from_Mesh + 2020/10/29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + watsug's design in collaboration with bitacovir + + + + + shapes + arrows + disc + + + Shapes spinning on a disc + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_DependencyGraph.svg b/icons/themed/Std_DependencyGraph.svg new file mode 100644 index 0000000000..7d97365fb3 --- /dev/null +++ b/icons/themed/Std_DependencyGraph.svg @@ -0,0 +1,273 @@ + + + Std_DependencyGraph + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_DependencyGraph + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/31 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + Arrow balloons + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_DlgParameter.svg b/icons/themed/Std_DlgParameter.svg new file mode 100644 index 0000000000..7cdd65e23e --- /dev/null +++ b/icons/themed/Std_DlgParameter.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + diff --git a/icons/themed/Std_DockOverlayToggleBottom.svg b/icons/themed/Std_DockOverlayToggleBottom.svg new file mode 100644 index 0000000000..9c532b42db --- /dev/null +++ b/icons/themed/Std_DockOverlayToggleBottom.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + diff --git a/icons/themed/Std_DockOverlayToggleLeft.svg b/icons/themed/Std_DockOverlayToggleLeft.svg new file mode 100644 index 0000000000..06c83f681a --- /dev/null +++ b/icons/themed/Std_DockOverlayToggleLeft.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + diff --git a/icons/themed/Std_DockOverlayToggleRight.svg b/icons/themed/Std_DockOverlayToggleRight.svg new file mode 100644 index 0000000000..557636dcca --- /dev/null +++ b/icons/themed/Std_DockOverlayToggleRight.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + diff --git a/icons/themed/Std_DockOverlayToggleTop.svg b/icons/themed/Std_DockOverlayToggleTop.svg new file mode 100644 index 0000000000..7849f8d89d --- /dev/null +++ b/icons/themed/Std_DockOverlayToggleTop.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + diff --git a/icons/themed/Std_DuplicateSelection.svg b/icons/themed/Std_DuplicateSelection.svg new file mode 100644 index 0000000000..9ce4a079d3 --- /dev/null +++ b/icons/themed/Std_DuplicateSelection.svg @@ -0,0 +1,257 @@ + + + Std_DuplicateSelection + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_DuplicateSelection + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Alexander Gryson's work + + + + + shape + box + + + Duplicated Shape + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Export.svg b/icons/themed/Std_Export.svg new file mode 100644 index 0000000000..dd2fb06f87 --- /dev/null +++ b/icons/themed/Std_Export.svg @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + diff --git a/icons/themed/Std_HideObjects.svg b/icons/themed/Std_HideObjects.svg new file mode 100644 index 0000000000..1ce1243079 --- /dev/null +++ b/icons/themed/Std_HideObjects.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_HideSelection.svg b/icons/themed/Std_HideSelection.svg new file mode 100644 index 0000000000..1962be543b --- /dev/null +++ b/icons/themed/Std_HideSelection.svg @@ -0,0 +1,121 @@ + + + Std_HideSelection + + + + + + + + + + + + + + + + image/svg+xml + + Std_HideSelection + 2020/12/25 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + eye + arrow + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Import.svg b/icons/themed/Std_Import.svg new file mode 100644 index 0000000000..0b4366618c --- /dev/null +++ b/icons/themed/Std_Import.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + diff --git a/icons/themed/Std_MarkToRecompute.svg b/icons/themed/Std_MarkToRecompute.svg new file mode 100644 index 0000000000..f859276052 --- /dev/null +++ b/icons/themed/Std_MarkToRecompute.svg @@ -0,0 +1,220 @@ + + + Std_MarkToRecompute + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + + + Std_MarkToRecompute + + + + 11-04-2021 + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_MergeProjects.svg b/icons/themed/Std_MergeProjects.svg new file mode 100644 index 0000000000..d6583b8809 --- /dev/null +++ b/icons/themed/Std_MergeProjects.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Placement.svg b/icons/themed/Std_Placement.svg new file mode 100644 index 0000000000..0cb39f84cf --- /dev/null +++ b/icons/themed/Std_Placement.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Plane.svg b/icons/themed/Std_Plane.svg new file mode 100644 index 0000000000..be8de4101a --- /dev/null +++ b/icons/themed/Std_Plane.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Sketcher_Sketch + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Sketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Point.svg b/icons/themed/Std_Point.svg new file mode 100644 index 0000000000..e63d0eff95 --- /dev/null +++ b/icons/themed/Std_Point.svg @@ -0,0 +1,236 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Sketcher_Sketch + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_Sketch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/Std_PrintPdf.svg b/icons/themed/Std_PrintPdf.svg new file mode 100644 index 0000000000..c9f47fbc74 --- /dev/null +++ b/icons/themed/Std_PrintPdf.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ProjectUtil.svg b/icons/themed/Std_ProjectUtil.svg new file mode 100644 index 0000000000..4f3f1c05af --- /dev/null +++ b/icons/themed/Std_ProjectUtil.svg @@ -0,0 +1,113 @@ + + + Std_ProjectUtil + + + + image/svg+xml + + Std_ProjectUtil + 2020/10/31 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + Green arrow and blue frame + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_RandomColor.svg b/icons/themed/Std_RandomColor.svg new file mode 100644 index 0000000000..db109262a1 --- /dev/null +++ b/icons/themed/Std_RandomColor.svg @@ -0,0 +1,299 @@ + + + Std_RandomColor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_RandomColor + + + bitacovir + + + + + + + + + + + + 2020/12/15 + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_RecentFiles.svg b/icons/themed/Std_RecentFiles.svg new file mode 100644 index 0000000000..88c835de69 --- /dev/null +++ b/icons/themed/Std_RecentFiles.svg @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_RecentMacros.svg b/icons/themed/Std_RecentMacros.svg new file mode 100644 index 0000000000..a263d0968a --- /dev/null +++ b/icons/themed/Std_RecentMacros.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Revert.svg b/icons/themed/Std_Revert.svg new file mode 100644 index 0000000000..312e40d980 --- /dev/null +++ b/icons/themed/Std_Revert.svg @@ -0,0 +1,201 @@ + + + Std_Revert + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_Revert + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/11/28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + back arrow + + + orange box with a arrow + + + + + + + + + + + diff --git a/icons/themed/Std_SaveAll.svg b/icons/themed/Std_SaveAll.svg new file mode 100644 index 0000000000..2d16b1f92e --- /dev/null +++ b/icons/themed/Std_SaveAll.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_SaveCopy.svg b/icons/themed/Std_SaveCopy.svg new file mode 100644 index 0000000000..6368ab90ce --- /dev/null +++ b/icons/themed/Std_SaveCopy.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_SceneInspector.svg b/icons/themed/Std_SceneInspector.svg new file mode 100644 index 0000000000..98541c94bf --- /dev/null +++ b/icons/themed/Std_SceneInspector.svg @@ -0,0 +1,279 @@ + + + Std_SceneInspector + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_SceneInspector + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/31 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + window + + + Window with list of elements + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_SelectGroupContents.svg b/icons/themed/Std_SelectGroupContents.svg new file mode 100644 index 0000000000..ae4abf5d0a --- /dev/null +++ b/icons/themed/Std_SelectGroupContents.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Gui/Std_SelectGroupContents.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + arrow + page + shapes + + + A cursor arrow pointing from left to right onto a folder with an square object on it + + + + + + + + + + diff --git a/icons/themed/Std_SelectVisibleObjects.svg b/icons/themed/Std_SelectVisibleObjects.svg new file mode 100644 index 0000000000..387caeff18 --- /dev/null +++ b/icons/themed/Std_SelectVisibleObjects.svg @@ -0,0 +1,238 @@ + + + Std_SelectVisibleObjects + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_SelectVisibleObjects + 2020/12/25 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + eye + arrow + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_SetAppearance.svg b/icons/themed/Std_SetAppearance.svg new file mode 100644 index 0000000000..d28b371355 --- /dev/null +++ b/icons/themed/Std_SetAppearance.svg @@ -0,0 +1,233 @@ + + + Std_SetAppearance + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_SetAppearance + + 2020/12/20 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + diff --git a/icons/themed/Std_ShowObjects.svg b/icons/themed/Std_ShowObjects.svg new file mode 100644 index 0000000000..c0c2134b56 --- /dev/null +++ b/icons/themed/Std_ShowObjects.svg @@ -0,0 +1,284 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ShowSelection.svg b/icons/themed/Std_ShowSelection.svg new file mode 100644 index 0000000000..4f5d8a56fa --- /dev/null +++ b/icons/themed/Std_ShowSelection.svg @@ -0,0 +1,158 @@ + + + Std_ShowSelection + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ShowSelection + 2020/12/25 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + + eye + arrow + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_TextureMapping.svg b/icons/themed/Std_TextureMapping.svg new file mode 100644 index 0000000000..054b420aa6 --- /dev/null +++ b/icons/themed/Std_TextureMapping.svg @@ -0,0 +1,153 @@ + + + Std_TextureMapping + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_TextureMapping + 2020/12/17 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ToggleClipPlane.svg b/icons/themed/Std_ToggleClipPlane.svg new file mode 100644 index 0000000000..a81cc28116 --- /dev/null +++ b/icons/themed/Std_ToggleClipPlane.svg @@ -0,0 +1,146 @@ + + + Std_ToggleClipPlane + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ToggleClipPlane + + + [bitacovir] + + + Arch_SectionPlane + 2020-12-17 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + Based on Agryson's work + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ToggleFreeze.svg b/icons/themed/Std_ToggleFreeze.svg new file mode 100644 index 0000000000..2f74d56c66 --- /dev/null +++ b/icons/themed/Std_ToggleFreeze.svg @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ToggleNavigation.svg b/icons/themed/Std_ToggleNavigation.svg new file mode 100644 index 0000000000..0aaa0362b4 --- /dev/null +++ b/icons/themed/Std_ToggleNavigation.svg @@ -0,0 +1,150 @@ + + + Std_ToggleNavigation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ToggleNavigation + + 2020/12/17 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + based on Alexander Gryson, wmayer's work + + + + + + esc + + + arrow-ccw + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/Std_ToggleObjects.svg b/icons/themed/Std_ToggleObjects.svg new file mode 100644 index 0000000000..d8f6477621 --- /dev/null +++ b/icons/themed/Std_ToggleObjects.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ToggleTransparency.svg b/icons/themed/Std_ToggleTransparency.svg new file mode 100644 index 0000000000..43dd1959e9 --- /dev/null +++ b/icons/themed/Std_ToggleTransparency.svg @@ -0,0 +1,380 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ToggleVisibility.svg b/icons/themed/Std_ToggleVisibility.svg new file mode 100644 index 0000000000..d5b2809ae8 --- /dev/null +++ b/icons/themed/Std_ToggleVisibility.svg @@ -0,0 +1,172 @@ + + + Std_ToggleVisibility + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ToggleVisibility + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool1.svg b/icons/themed/Std_Tool1.svg new file mode 100644 index 0000000000..271fdd4444 --- /dev/null +++ b/icons/themed/Std_Tool1.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool10.svg b/icons/themed/Std_Tool10.svg new file mode 100644 index 0000000000..b50f708fe4 --- /dev/null +++ b/icons/themed/Std_Tool10.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool11.svg b/icons/themed/Std_Tool11.svg new file mode 100644 index 0000000000..e75bc39409 --- /dev/null +++ b/icons/themed/Std_Tool11.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool12.svg b/icons/themed/Std_Tool12.svg new file mode 100644 index 0000000000..37682fafb3 --- /dev/null +++ b/icons/themed/Std_Tool12.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool2.svg b/icons/themed/Std_Tool2.svg new file mode 100644 index 0000000000..e9d558e57a --- /dev/null +++ b/icons/themed/Std_Tool2.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool3.svg b/icons/themed/Std_Tool3.svg new file mode 100644 index 0000000000..5112ec4fd2 --- /dev/null +++ b/icons/themed/Std_Tool3.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool4.svg b/icons/themed/Std_Tool4.svg new file mode 100644 index 0000000000..f2e497f6fc --- /dev/null +++ b/icons/themed/Std_Tool4.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool5.svg b/icons/themed/Std_Tool5.svg new file mode 100644 index 0000000000..54667c1a2f --- /dev/null +++ b/icons/themed/Std_Tool5.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool6.svg b/icons/themed/Std_Tool6.svg new file mode 100644 index 0000000000..27cbd20df8 --- /dev/null +++ b/icons/themed/Std_Tool6.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool7.svg b/icons/themed/Std_Tool7.svg new file mode 100644 index 0000000000..bdd5e555c0 --- /dev/null +++ b/icons/themed/Std_Tool7.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool8.svg b/icons/themed/Std_Tool8.svg new file mode 100644 index 0000000000..66309e775a --- /dev/null +++ b/icons/themed/Std_Tool8.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Tool9.svg b/icons/themed/Std_Tool9.svg new file mode 100644 index 0000000000..5e1c88578e --- /dev/null +++ b/icons/themed/Std_Tool9.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_TransformManip.svg b/icons/themed/Std_TransformManip.svg new file mode 100644 index 0000000000..624b8b50cb --- /dev/null +++ b/icons/themed/Std_TransformManip.svg @@ -0,0 +1,276 @@ + + + Std_TransformManip + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_TransformManip + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + 2021/04/09 + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_UserEditModeColor.svg b/icons/themed/Std_UserEditModeColor.svg new file mode 100644 index 0000000000..dcaec051c4 --- /dev/null +++ b/icons/themed/Std_UserEditModeColor.svg @@ -0,0 +1,283 @@ + + + Std_UserEditModeColor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_UserEditModeColor + 11-10-2021 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_UserEditModeCutting.svg b/icons/themed/Std_UserEditModeCutting.svg new file mode 100644 index 0000000000..5885745195 --- /dev/null +++ b/icons/themed/Std_UserEditModeCutting.svg @@ -0,0 +1,431 @@ + + + Std_UserEditModeCutting + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_UserEditModeCutting + 11-10-2021 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_UserEditModeDefault.svg b/icons/themed/Std_UserEditModeDefault.svg new file mode 100644 index 0000000000..90a4dc3e44 --- /dev/null +++ b/icons/themed/Std_UserEditModeDefault.svg @@ -0,0 +1,229 @@ + + + Std_UserEditModeDefault + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_UserEditModeDefault + 11-10-2021 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_UserEditModeTransform.svg b/icons/themed/Std_UserEditModeTransform.svg new file mode 100644 index 0000000000..fd2fb8a867 --- /dev/null +++ b/icons/themed/Std_UserEditModeTransform.svg @@ -0,0 +1,228 @@ + + + Std_UserEditModeTransform + + + + + + + + + + + + + + + + image/svg+xml + + Std_UserEditModeTransform + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + 11/10/21 + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewDimetric.svg b/icons/themed/Std_ViewDimetric.svg new file mode 100644 index 0000000000..282c1694f6 --- /dev/null +++ b/icons/themed/Std_ViewDimetric.svg @@ -0,0 +1,142 @@ + + + Std_ViewDimetric + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ViewDimetric + 2020/12/10 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewHome.svg b/icons/themed/Std_ViewHome.svg new file mode 100644 index 0000000000..76c0e953fd --- /dev/null +++ b/icons/themed/Std_ViewHome.svg @@ -0,0 +1,133 @@ + + + Std_ViewHome + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ViewHome + 2020/12/15 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewIvIssueCamPos.svg b/icons/themed/Std_ViewIvIssueCamPos.svg new file mode 100644 index 0000000000..dee9d48b70 --- /dev/null +++ b/icons/themed/Std_ViewIvIssueCamPos.svg @@ -0,0 +1,172 @@ + + + Std_ViewIvIssueCamPos + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ViewIvIssueCamPos + 2020/12/10 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewIvStereoInterleavedColumns.svg b/icons/themed/Std_ViewIvStereoInterleavedColumns.svg new file mode 100644 index 0000000000..883b46643b --- /dev/null +++ b/icons/themed/Std_ViewIvStereoInterleavedColumns.svg @@ -0,0 +1,254 @@ + + + Std_ViewIvStereoInterleavedColumns + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + Std_ViewIvStereoInterleavedColumns + 2020/12/20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewIvStereoInterleavedRows.svg b/icons/themed/Std_ViewIvStereoInterleavedRows.svg new file mode 100644 index 0000000000..2dddc8a7ef --- /dev/null +++ b/icons/themed/Std_ViewIvStereoInterleavedRows.svg @@ -0,0 +1,254 @@ + + + Std_ViewIvStereoInterleavedRows + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + Std_ViewIvStereoInterleavedRows + 2020/12/20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewIvStereoOff.svg b/icons/themed/Std_ViewIvStereoOff.svg new file mode 100644 index 0000000000..79f463fca4 --- /dev/null +++ b/icons/themed/Std_ViewIvStereoOff.svg @@ -0,0 +1,218 @@ + + + Std_ViewIvStereoOff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + Std_ViewIvStereoOff + 2020/12/20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewIvStereoQuadBuff.svg b/icons/themed/Std_ViewIvStereoQuadBuff.svg new file mode 100644 index 0000000000..58134f5080 --- /dev/null +++ b/icons/themed/Std_ViewIvStereoQuadBuff.svg @@ -0,0 +1,262 @@ + + + Std_ViewIvStereoQuadBuff + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + Std_ViewIvStereoQuadBuff + 2020/12/20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewIvStereoRedGreen.svg b/icons/themed/Std_ViewIvStereoRedGreen.svg new file mode 100644 index 0000000000..416973ec9b --- /dev/null +++ b/icons/themed/Std_ViewIvStereoRedGreen.svg @@ -0,0 +1,230 @@ + + + Std_ViewIvStereoRedGreen + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + Std_ViewIvStereoRedGreen + 2020/12/20 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewScreenShot.svg b/icons/themed/Std_ViewScreenShot.svg new file mode 100644 index 0000000000..fa3f1df62f --- /dev/null +++ b/icons/themed/Std_ViewScreenShot.svg @@ -0,0 +1,696 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + camera + photo + SLR + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_ViewTrimetric.svg b/icons/themed/Std_ViewTrimetric.svg new file mode 100644 index 0000000000..a3982d3f5d --- /dev/null +++ b/icons/themed/Std_ViewTrimetric.svg @@ -0,0 +1,142 @@ + + + Std_ViewTrimetric + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_ViewTrimetric + 2020/12/10 + + + [bitacovir] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_WindowCascade.svg b/icons/themed/Std_WindowCascade.svg new file mode 100644 index 0000000000..8cd060b05e --- /dev/null +++ b/icons/themed/Std_WindowCascade.svg @@ -0,0 +1,442 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_WindowNext.svg b/icons/themed/Std_WindowNext.svg new file mode 100644 index 0000000000..0cb099d978 --- /dev/null +++ b/icons/themed/Std_WindowNext.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_WindowPrev.svg b/icons/themed/Std_WindowPrev.svg new file mode 100644 index 0000000000..de564b791f --- /dev/null +++ b/icons/themed/Std_WindowPrev.svg @@ -0,0 +1,230 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_WindowTileVer.svg b/icons/themed/Std_WindowTileVer.svg new file mode 100644 index 0000000000..b04f6d0db3 --- /dev/null +++ b/icons/themed/Std_WindowTileVer.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Std_Windows.svg b/icons/themed/Std_Windows.svg new file mode 100644 index 0000000000..6babe48491 --- /dev/null +++ b/icons/themed/Std_Windows.svg @@ -0,0 +1,292 @@ + + + Std_Windows + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Std_Windows + + + [bitacovir] + + + Part_Shape_from_Mesh + 2021/01/04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + window + + + Window with list of elements + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_BSplineSurface.svg b/icons/themed/Surface_BSplineSurface.svg new file mode 100644 index 0000000000..91f5979964 --- /dev/null +++ b/icons/themed/Surface_BSplineSurface.svg @@ -0,0 +1,193 @@ + + + Surface_BSplineSurface + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_BSplineSurface + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_BezierSurface.svg b/icons/themed/Surface_BezierSurface.svg new file mode 100644 index 0000000000..eae4faf654 --- /dev/null +++ b/icons/themed/Surface_BezierSurface.svg @@ -0,0 +1,209 @@ + + + Surface_BezierSurface + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_BezierSurface + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_BlendCurve.svg b/icons/themed/Surface_BlendCurve.svg new file mode 100644 index 0000000000..d05cc3341f --- /dev/null +++ b/icons/themed/Surface_BlendCurve.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_CurveOnMesh.svg b/icons/themed/Surface_CurveOnMesh.svg new file mode 100644 index 0000000000..c8b76ba923 --- /dev/null +++ b/icons/themed/Surface_CurveOnMesh.svg @@ -0,0 +1,204 @@ + + + Surface_CurveOnMesh + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_CurveOnMesh + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_Cut.svg b/icons/themed/Surface_Cut.svg new file mode 100644 index 0000000000..8d1228c2f9 --- /dev/null +++ b/icons/themed/Surface_Cut.svg @@ -0,0 +1,187 @@ + + + Surface_Cut + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_Cut + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_ExtendFace.svg b/icons/themed/Surface_ExtendFace.svg new file mode 100644 index 0000000000..412b80dd8e --- /dev/null +++ b/icons/themed/Surface_ExtendFace.svg @@ -0,0 +1,211 @@ + + + Surface_ExtendFace + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_ExtendFace + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_Filling.svg b/icons/themed/Surface_Filling.svg new file mode 100644 index 0000000000..9bc1e262f7 --- /dev/null +++ b/icons/themed/Surface_Filling.svg @@ -0,0 +1,179 @@ + + + Surface_Filling + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_Filling + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_GeomFillSurface.svg b/icons/themed/Surface_GeomFillSurface.svg new file mode 100644 index 0000000000..a74504ce09 --- /dev/null +++ b/icons/themed/Surface_GeomFillSurface.svg @@ -0,0 +1,171 @@ + + + Surface_GeomFillSurface + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_GeomFillSurface + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + diff --git a/icons/themed/Surface_Sections.svg b/icons/themed/Surface_Sections.svg new file mode 100644 index 0000000000..9f9a1cf671 --- /dev/null +++ b/icons/themed/Surface_Sections.svg @@ -0,0 +1,229 @@ + + + Surface_Sections + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_Sections + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_Sewing.svg b/icons/themed/Surface_Sewing.svg new file mode 100644 index 0000000000..44b6329786 --- /dev/null +++ b/icons/themed/Surface_Sewing.svg @@ -0,0 +1,191 @@ + + + Surface_Sewing + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_Sewing + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Surface_Surface.svg b/icons/themed/Surface_Surface.svg new file mode 100644 index 0000000000..ac2ecd7eac --- /dev/null +++ b/icons/themed/Surface_Surface.svg @@ -0,0 +1,171 @@ + + + Surface_Surface + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_Surface + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + diff --git a/icons/themed/Surface_Workbench.svg b/icons/themed/Surface_Workbench.svg new file mode 100644 index 0000000000..99b6505aee --- /dev/null +++ b/icons/themed/Surface_Workbench.svg @@ -0,0 +1,171 @@ + + + Surface_Workbench + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Surface_Workbench + + + [bitacovir] + + + Part_Shape_from_Mesh + 2020/10/03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + surface + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_2LineCenterline.svg b/icons/themed/TechDraw_2LineCenterline.svg new file mode 100644 index 0000000000..3a90c98a6a --- /dev/null +++ b/icons/themed/TechDraw_2LineCenterline.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_2PointCenterline.svg b/icons/themed/TechDraw_2PointCenterline.svg new file mode 100644 index 0000000000..b8ee9b5373 --- /dev/null +++ b/icons/themed/TechDraw_2PointCenterline.svg @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_3PtAngleDimension.svg b/icons/themed/TechDraw_3PtAngleDimension.svg new file mode 100644 index 0000000000..73ae49f8d1 --- /dev/null +++ b/icons/themed/TechDraw_3PtAngleDimension.svg @@ -0,0 +1,280 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Angle.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ActiveView.svg b/icons/themed/TechDraw_ActiveView.svg new file mode 100644 index 0000000000..93e50b54df --- /dev/null +++ b/icons/themed/TechDraw_ActiveView.svg @@ -0,0 +1,93 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_AddOffsetVertex.svg b/icons/themed/TechDraw_AddOffsetVertex.svg new file mode 100644 index 0000000000..c1bb56d59e --- /dev/null +++ b/icons/themed/TechDraw_AddOffsetVertex.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_AngleDimension.svg b/icons/themed/TechDraw_AngleDimension.svg new file mode 100644 index 0000000000..4edb1bb056 --- /dev/null +++ b/icons/themed/TechDraw_AngleDimension.svg @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Angle.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Annotation.svg b/icons/themed/TechDraw_Annotation.svg new file mode 100644 index 0000000000..07d7f2812e --- /dev/null +++ b/icons/themed/TechDraw_Annotation.svg @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ArchView.svg b/icons/themed/TechDraw_ArchView.svg new file mode 100644 index 0000000000..b62f0c1a86 --- /dev/null +++ b/icons/themed/TechDraw_ArchView.svg @@ -0,0 +1,102 @@ + + + + + techdraw-arch-view + + + + + + + + + + + image/svg+xml + + techdraw-arch-view + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_AreaDimension.svg b/icons/themed/TechDraw_AreaDimension.svg new file mode 100644 index 0000000000..d527e99d22 --- /dev/null +++ b/icons/themed/TechDraw_AreaDimension.svg @@ -0,0 +1,101 @@ + +TechDraw_Dimension_Angle + TechDraw_Dimension_Angle diff --git a/icons/themed/TechDraw_AxoLengthDimension.svg b/icons/themed/TechDraw_AxoLengthDimension.svg new file mode 100644 index 0000000000..8f05ded489 --- /dev/null +++ b/icons/themed/TechDraw_AxoLengthDimension.svg @@ -0,0 +1,258 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_Dimension + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + double arrow + diagonal + + + Double arrow at an angle between two diagonal lines + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Balloon.svg b/icons/themed/TechDraw_Balloon.svg new file mode 100644 index 0000000000..0f1d34d39d --- /dev/null +++ b/icons/themed/TechDraw_Balloon.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_Dimension_Diameter + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Diameter.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + double arrow + circle + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_BrokenView.svg b/icons/themed/TechDraw_BrokenView.svg new file mode 100644 index 0000000000..080f39d56b --- /dev/null +++ b/icons/themed/TechDraw_BrokenView.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_CameraOrientation.svg b/icons/themed/TechDraw_CameraOrientation.svg new file mode 100644 index 0000000000..5d352e6058 --- /dev/null +++ b/icons/themed/TechDraw_CameraOrientation.svg @@ -0,0 +1,161 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ClipGroup.svg b/icons/themed/TechDraw_ClipGroup.svg new file mode 100644 index 0000000000..b56bcbc655 --- /dev/null +++ b/icons/themed/TechDraw_ClipGroup.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ClipGroupAdd.svg b/icons/themed/TechDraw_ClipGroupAdd.svg new file mode 100644 index 0000000000..d4c58db076 --- /dev/null +++ b/icons/themed/TechDraw_ClipGroupAdd.svg @@ -0,0 +1,183 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + techdraw-clipplus + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-clipplus.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ClipGroupRemove.svg b/icons/themed/TechDraw_ClipGroupRemove.svg new file mode 100644 index 0000000000..a01407bb46 --- /dev/null +++ b/icons/themed/TechDraw_ClipGroupRemove.svg @@ -0,0 +1,173 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + techdraw-clipminus + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-clipminus.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ComplexSection.svg b/icons/themed/TechDraw_ComplexSection.svg new file mode 100644 index 0000000000..217c7c7794 --- /dev/null +++ b/icons/themed/TechDraw_ComplexSection.svg @@ -0,0 +1,50 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_CosmeticCircle.svg b/icons/themed/TechDraw_CosmeticCircle.svg new file mode 100644 index 0000000000..4a5cc0949d --- /dev/null +++ b/icons/themed/TechDraw_CosmeticCircle.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_CosmeticEraser.svg b/icons/themed/TechDraw_CosmeticEraser.svg new file mode 100644 index 0000000000..af7cd978ef --- /dev/null +++ b/icons/themed/TechDraw_CosmeticEraser.svg @@ -0,0 +1,476 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_CosmeticVertex.svg b/icons/themed/TechDraw_CosmeticVertex.svg new file mode 100644 index 0000000000..35f6510d9a --- /dev/null +++ b/icons/themed/TechDraw_CosmeticVertex.svg @@ -0,0 +1,147 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/TechDraw_DecorateLine.svg b/icons/themed/TechDraw_DecorateLine.svg new file mode 100644 index 0000000000..ee9106c22a --- /dev/null +++ b/icons/themed/TechDraw_DecorateLine.svg @@ -0,0 +1,501 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_DetailView.svg b/icons/themed/TechDraw_DetailView.svg new file mode 100644 index 0000000000..9fb5793a78 --- /dev/null +++ b/icons/themed/TechDraw_DetailView.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_DiameterDimension.svg b/icons/themed/TechDraw_DiameterDimension.svg new file mode 100644 index 0000000000..4188d89cac --- /dev/null +++ b/icons/themed/TechDraw_DiameterDimension.svg @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_Dimension_Diameter + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Diameter.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + double arrow + circle + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Dimension.svg b/icons/themed/TechDraw_Dimension.svg new file mode 100644 index 0000000000..0e5ef6657f --- /dev/null +++ b/icons/themed/TechDraw_Dimension.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + double arrow + diagonal + + + Double arrow at an angle between two diagonal lines + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_DimensionRepair.svg b/icons/themed/TechDraw_DimensionRepair.svg new file mode 100644 index 0000000000..1a8a824074 --- /dev/null +++ b/icons/themed/TechDraw_DimensionRepair.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_Dimension + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + double arrow + diagonal + + + Double arrow at an angle between two diagonal lines + + + + + + + + + + diff --git a/icons/themed/TechDraw_Dimension_Pointer.svg b/icons/themed/TechDraw_Dimension_Pointer.svg new file mode 100644 index 0000000000..8c59e722ee --- /dev/null +++ b/icons/themed/TechDraw_Dimension_Pointer.svg @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_DraftView.svg b/icons/themed/TechDraw_DraftView.svg new file mode 100644 index 0000000000..55371d0d24 --- /dev/null +++ b/icons/themed/TechDraw_DraftView.svg @@ -0,0 +1,113 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExportPageDXF.svg b/icons/themed/TechDraw_ExportPageDXF.svg new file mode 100644 index 0000000000..5b01414239 --- /dev/null +++ b/icons/themed/TechDraw_ExportPageDXF.svg @@ -0,0 +1,316 @@ + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-symbol.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExportPageSVG.svg b/icons/themed/TechDraw_ExportPageSVG.svg new file mode 100644 index 0000000000..256d58d867 --- /dev/null +++ b/icons/themed/TechDraw_ExportPageSVG.svg @@ -0,0 +1,318 @@ + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-symbol.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionArcLengthAnnotation.svg b/icons/themed/TechDraw_ExtensionArcLengthAnnotation.svg new file mode 100644 index 0000000000..259c238fb6 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionArcLengthAnnotation.svg @@ -0,0 +1,33 @@ + +TechDraw_Dimension_Angle + TechDraw_Dimension_Angle diff --git a/icons/themed/TechDraw_ExtensionAreaAnnotation.svg b/icons/themed/TechDraw_ExtensionAreaAnnotation.svg new file mode 100644 index 0000000000..7678c9102c --- /dev/null +++ b/icons/themed/TechDraw_ExtensionAreaAnnotation.svg @@ -0,0 +1,144 @@ + +TechDraw_Dimension_Angle + TechDraw_Dimension_Angle diff --git a/icons/themed/TechDraw_ExtensionCascadeHorizDimension.svg b/icons/themed/TechDraw_ExtensionCascadeHorizDimension.svg new file mode 100644 index 0000000000..649a18fbea --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCascadeHorizDimension.svg @@ -0,0 +1,301 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCascadeObliqueDimension.svg b/icons/themed/TechDraw_ExtensionCascadeObliqueDimension.svg new file mode 100644 index 0000000000..a70096d8fc --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCascadeObliqueDimension.svg @@ -0,0 +1,274 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCascadeVertDimension.svg b/icons/themed/TechDraw_ExtensionCascadeVertDimension.svg new file mode 100644 index 0000000000..f52207c163 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCascadeVertDimension.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionChangeLineAttributes.svg b/icons/themed/TechDraw_ExtensionChangeLineAttributes.svg new file mode 100644 index 0000000000..b248678a10 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionChangeLineAttributes.svg @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCircleCenterLines.svg b/icons/themed/TechDraw_ExtensionCircleCenterLines.svg new file mode 100644 index 0000000000..4c6971212e --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCircleCenterLines.svg @@ -0,0 +1,189 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateHorizChainDimension.svg b/icons/themed/TechDraw_ExtensionCreateHorizChainDimension.svg new file mode 100644 index 0000000000..4dd11a9fff --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateHorizChainDimension.svg @@ -0,0 +1,175 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateHorizChamferDimension.svg b/icons/themed/TechDraw_ExtensionCreateHorizChamferDimension.svg new file mode 100644 index 0000000000..127f59b229 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateHorizChamferDimension.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateHorizCoordDimension.svg b/icons/themed/TechDraw_ExtensionCreateHorizCoordDimension.svg new file mode 100644 index 0000000000..0c3ddb5094 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateHorizCoordDimension.svg @@ -0,0 +1,260 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateLengthArc.svg b/icons/themed/TechDraw_ExtensionCreateLengthArc.svg new file mode 100644 index 0000000000..19ea1f9091 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateLengthArc.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateObliqueChainDimension.svg b/icons/themed/TechDraw_ExtensionCreateObliqueChainDimension.svg new file mode 100644 index 0000000000..5679106b3d --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateObliqueChainDimension.svg @@ -0,0 +1,188 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateObliqueCoordDimension.svg b/icons/themed/TechDraw_ExtensionCreateObliqueCoordDimension.svg new file mode 100644 index 0000000000..7a45b10111 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateObliqueCoordDimension.svg @@ -0,0 +1,274 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateVertChainDimension.svg b/icons/themed/TechDraw_ExtensionCreateVertChainDimension.svg new file mode 100644 index 0000000000..8f6f549d5a --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateVertChainDimension.svg @@ -0,0 +1,177 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateVertChamferDimension.svg b/icons/themed/TechDraw_ExtensionCreateVertChamferDimension.svg new file mode 100644 index 0000000000..d6b07aefac --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateVertChamferDimension.svg @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCreateVertCoordDimension.svg b/icons/themed/TechDraw_ExtensionCreateVertCoordDimension.svg new file mode 100644 index 0000000000..5be9cc64ac --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCreateVertCoordDimension.svg @@ -0,0 +1,260 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionCustomizeFormat.svg b/icons/themed/TechDraw_ExtensionCustomizeFormat.svg new file mode 100644 index 0000000000..0e13d12334 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionCustomizeFormat.svg @@ -0,0 +1,39 @@ + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionDecreaseDecimal.svg b/icons/themed/TechDraw_ExtensionDecreaseDecimal.svg new file mode 100644 index 0000000000..6bf6d9e682 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionDecreaseDecimal.svg @@ -0,0 +1,98 @@ + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionDrawCosmArc.svg b/icons/themed/TechDraw_ExtensionDrawCosmArc.svg new file mode 100644 index 0000000000..817b851633 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionDrawCosmArc.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionDrawCosmCircle.svg b/icons/themed/TechDraw_ExtensionDrawCosmCircle.svg new file mode 100644 index 0000000000..717e607d7d --- /dev/null +++ b/icons/themed/TechDraw_ExtensionDrawCosmCircle.svg @@ -0,0 +1,196 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionDrawCosmCircle3Points.svg b/icons/themed/TechDraw_ExtensionDrawCosmCircle3Points.svg new file mode 100644 index 0000000000..0162866c14 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionDrawCosmCircle3Points.svg @@ -0,0 +1,151 @@ + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionExtendLine.svg b/icons/themed/TechDraw_ExtensionExtendLine.svg new file mode 100644 index 0000000000..f5ab70bc2b --- /dev/null +++ b/icons/themed/TechDraw_ExtensionExtendLine.svg @@ -0,0 +1,154 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionHoleCircle.svg b/icons/themed/TechDraw_ExtensionHoleCircle.svg new file mode 100644 index 0000000000..563d873a67 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionHoleCircle.svg @@ -0,0 +1,246 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionIncreaseDecimal.svg b/icons/themed/TechDraw_ExtensionIncreaseDecimal.svg new file mode 100644 index 0000000000..22a899f40d --- /dev/null +++ b/icons/themed/TechDraw_ExtensionIncreaseDecimal.svg @@ -0,0 +1,91 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionInsertDiameter.svg b/icons/themed/TechDraw_ExtensionInsertDiameter.svg new file mode 100644 index 0000000000..3efcf57906 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionInsertDiameter.svg @@ -0,0 +1,42 @@ + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionInsertRepetition.svg b/icons/themed/TechDraw_ExtensionInsertRepetition.svg new file mode 100644 index 0000000000..79fb1972a5 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionInsertRepetition.svg @@ -0,0 +1,21 @@ + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionInsertSquare.svg b/icons/themed/TechDraw_ExtensionInsertSquare.svg new file mode 100644 index 0000000000..22cb08a2bf --- /dev/null +++ b/icons/themed/TechDraw_ExtensionInsertSquare.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionLineParallel.svg b/icons/themed/TechDraw_ExtensionLineParallel.svg new file mode 100644 index 0000000000..fbb9f0449e --- /dev/null +++ b/icons/themed/TechDraw_ExtensionLineParallel.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionLinePerpendicular.svg b/icons/themed/TechDraw_ExtensionLinePerpendicular.svg new file mode 100644 index 0000000000..5a22698873 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionLinePerpendicular.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionLockUnlockView.svg b/icons/themed/TechDraw_ExtensionLockUnlockView.svg new file mode 100644 index 0000000000..b7492e570d --- /dev/null +++ b/icons/themed/TechDraw_ExtensionLockUnlockView.svg @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionPosHorizChainDimension.svg b/icons/themed/TechDraw_ExtensionPosHorizChainDimension.svg new file mode 100644 index 0000000000..c8e02ce7e3 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionPosHorizChainDimension.svg @@ -0,0 +1,244 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionPosObliqueChainDimension.svg b/icons/themed/TechDraw_ExtensionPosObliqueChainDimension.svg new file mode 100644 index 0000000000..630a7d271a --- /dev/null +++ b/icons/themed/TechDraw_ExtensionPosObliqueChainDimension.svg @@ -0,0 +1,247 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionPosVertChainDimension.svg b/icons/themed/TechDraw_ExtensionPosVertChainDimension.svg new file mode 100644 index 0000000000..fbb8383572 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionPosVertChainDimension.svg @@ -0,0 +1,244 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionPositionSectionView.svg b/icons/themed/TechDraw_ExtensionPositionSectionView.svg new file mode 100644 index 0000000000..fcd50dcec7 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionPositionSectionView.svg @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionRemovePrefixChar.svg b/icons/themed/TechDraw_ExtensionRemovePrefixChar.svg new file mode 100644 index 0000000000..4ccedc7254 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionRemovePrefixChar.svg @@ -0,0 +1,87 @@ + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionSelectLineAttributes.svg b/icons/themed/TechDraw_ExtensionSelectLineAttributes.svg new file mode 100644 index 0000000000..d822cfc1fe --- /dev/null +++ b/icons/themed/TechDraw_ExtensionSelectLineAttributes.svg @@ -0,0 +1,240 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionShortenLine.svg b/icons/themed/TechDraw_ExtensionShortenLine.svg new file mode 100644 index 0000000000..d1a1e766e4 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionShortenLine.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionThreadBoltBottom.svg b/icons/themed/TechDraw_ExtensionThreadBoltBottom.svg new file mode 100644 index 0000000000..b165fcdd56 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionThreadBoltBottom.svg @@ -0,0 +1,104 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionThreadBoltSide.svg b/icons/themed/TechDraw_ExtensionThreadBoltSide.svg new file mode 100644 index 0000000000..3ca62e65bc --- /dev/null +++ b/icons/themed/TechDraw_ExtensionThreadBoltSide.svg @@ -0,0 +1,102 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionThreadHoleBottom.svg b/icons/themed/TechDraw_ExtensionThreadHoleBottom.svg new file mode 100644 index 0000000000..8c3ea8a5bd --- /dev/null +++ b/icons/themed/TechDraw_ExtensionThreadHoleBottom.svg @@ -0,0 +1,73 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionThreadHoleSide.svg b/icons/themed/TechDraw_ExtensionThreadHoleSide.svg new file mode 100644 index 0000000000..276d365c96 --- /dev/null +++ b/icons/themed/TechDraw_ExtensionThreadHoleSide.svg @@ -0,0 +1,103 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ExtensionVertexAtIntersection.svg b/icons/themed/TechDraw_ExtensionVertexAtIntersection.svg new file mode 100644 index 0000000000..7662ba923a --- /dev/null +++ b/icons/themed/TechDraw_ExtensionVertexAtIntersection.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_FaceCenterLine.svg b/icons/themed/TechDraw_FaceCenterLine.svg new file mode 100644 index 0000000000..eda47b7649 --- /dev/null +++ b/icons/themed/TechDraw_FaceCenterLine.svg @@ -0,0 +1,291 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_FaceDecor.svg b/icons/themed/TechDraw_FaceDecor.svg new file mode 100644 index 0000000000..44c4eccc39 --- /dev/null +++ b/icons/themed/TechDraw_FaceDecor.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + diff --git a/icons/themed/TechDraw_FillTemplateFields.svg b/icons/themed/TechDraw_FillTemplateFields.svg new file mode 100644 index 0000000000..e3e4edd0cb --- /dev/null +++ b/icons/themed/TechDraw_FillTemplateFields.svg @@ -0,0 +1,545 @@ + + + TechDraw_FillTemplateFields + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [bitacovir] + + + + + TechDraw_FillTemplateFields + + + + 02-04-2021 + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_GeometricHatch.svg b/icons/themed/TechDraw_GeometricHatch.svg new file mode 100644 index 0000000000..5bf66564e0 --- /dev/null +++ b/icons/themed/TechDraw_GeometricHatch.svg @@ -0,0 +1,198 @@ + + + + + TechDraw_Hatch + + + + + + + + + + + image/svg+xml + + TechDraw_Hatch + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Hatch.svg b/icons/themed/TechDraw_Hatch.svg new file mode 100644 index 0000000000..52152b0b93 --- /dev/null +++ b/icons/themed/TechDraw_Hatch.svg @@ -0,0 +1,161 @@ + + + TechDraw_Hatch + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_Hatch + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_Hatch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_HoleShaftFit.svg b/icons/themed/TechDraw_HoleShaftFit.svg new file mode 100644 index 0000000000..b626334c1a --- /dev/null +++ b/icons/themed/TechDraw_HoleShaftFit.svg @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + double arrow + diagonal + + + Double arrow at an angle between two diagonal lines + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_HorizontalDimension.svg b/icons/themed/TechDraw_HorizontalDimension.svg new file mode 100644 index 0000000000..06fed68a32 --- /dev/null +++ b/icons/themed/TechDraw_HorizontalDimension.svg @@ -0,0 +1,199 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Horizontal.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + double arrow + arrow + horizontal + + + Double arrow between two bars + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_HorizontalExtentDimension.svg b/icons/themed/TechDraw_HorizontalExtentDimension.svg new file mode 100644 index 0000000000..7b42f5bf8d --- /dev/null +++ b/icons/themed/TechDraw_HorizontalExtentDimension.svg @@ -0,0 +1,124 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Image.svg b/icons/themed/TechDraw_Image.svg new file mode 100644 index 0000000000..e2835b9718 --- /dev/null +++ b/icons/themed/TechDraw_Image.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_LandmarkDimension.svg b/icons/themed/TechDraw_LandmarkDimension.svg new file mode 100644 index 0000000000..45868f5f61 --- /dev/null +++ b/icons/themed/TechDraw_LandmarkDimension.svg @@ -0,0 +1,316 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_LandmarkDimension + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_LandmarkDimension.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + double arrow + diagonal + arrow + + + Double arrow at angle between two diagonal bars + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_LeaderLine.svg b/icons/themed/TechDraw_LeaderLine.svg new file mode 100644 index 0000000000..3c0e109f9e --- /dev/null +++ b/icons/themed/TechDraw_LeaderLine.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_LengthDimension.svg b/icons/themed/TechDraw_LengthDimension.svg new file mode 100644 index 0000000000..d3f18cb0b5 --- /dev/null +++ b/icons/themed/TechDraw_LengthDimension.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Length.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + double arrow + diagonal + arrow + + + Double arrow at angle between two diagonal bars + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Line2Points.svg b/icons/themed/TechDraw_Line2Points.svg new file mode 100644 index 0000000000..640d26dccc --- /dev/null +++ b/icons/themed/TechDraw_Line2Points.svg @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_LinkDimension.svg b/icons/themed/TechDraw_LinkDimension.svg new file mode 100644 index 0000000000..13b9f69b5b --- /dev/null +++ b/icons/themed/TechDraw_LinkDimension.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_LinkDimension + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_LinkDimension.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + chain + link + ellipse + + + Two links of a chain + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Lock.svg b/icons/themed/TechDraw_Lock.svg new file mode 100644 index 0000000000..55362517da --- /dev/null +++ b/icons/themed/TechDraw_Lock.svg @@ -0,0 +1,460 @@ + + + TechDraw_Lock + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + TechDraw_Lock + + + [bitacovir] + + + Assembly_Assembly_Constraints_Tree + 09-04-2021 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Midpoints.svg b/icons/themed/TechDraw_Midpoints.svg new file mode 100644 index 0000000000..afabb91981 --- /dev/null +++ b/icons/themed/TechDraw_Midpoints.svg @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_MoveView.svg b/icons/themed/TechDraw_MoveView.svg new file mode 100644 index 0000000000..fbe896940b --- /dev/null +++ b/icons/themed/TechDraw_MoveView.svg @@ -0,0 +1,630 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Multiview.svg b/icons/themed/TechDraw_Multiview.svg new file mode 100644 index 0000000000..2796a0c175 --- /dev/null +++ b/icons/themed/TechDraw_Multiview.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_PageDefault.svg b/icons/themed/TechDraw_PageDefault.svg new file mode 100644 index 0000000000..6e32d1e9bb --- /dev/null +++ b/icons/themed/TechDraw_PageDefault.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_PageTemplate.svg b/icons/themed/TechDraw_PageTemplate.svg new file mode 100644 index 0000000000..30f61c4c56 --- /dev/null +++ b/icons/themed/TechDraw_PageTemplate.svg @@ -0,0 +1,175 @@ + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/techdraw-new-pick.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Pages.svg b/icons/themed/TechDraw_Pages.svg new file mode 100644 index 0000000000..d16df225b4 --- /dev/null +++ b/icons/themed/TechDraw_Pages.svg @@ -0,0 +1,178 @@ + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Pages.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + pages + page + + + Three pages in a pile + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_PrintAll.svg b/icons/themed/TechDraw_PrintAll.svg new file mode 100644 index 0000000000..3e472019dc --- /dev/null +++ b/icons/themed/TechDraw_PrintAll.svg @@ -0,0 +1,178 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjBottom.svg b/icons/themed/TechDraw_ProjBottom.svg new file mode 100644 index 0000000000..63ef388a13 --- /dev/null +++ b/icons/themed/TechDraw_ProjBottom.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_ProjBottom.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjFront.svg b/icons/themed/TechDraw_ProjFront.svg new file mode 100644 index 0000000000..e7032e350a --- /dev/null +++ b/icons/themed/TechDraw_ProjFront.svg @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Proj + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjFrontBottomLeft.svg b/icons/themed/TechDraw_ProjFrontBottomLeft.svg new file mode 100644 index 0000000000..b483ce10e8 --- /dev/null +++ b/icons/themed/TechDraw_ProjFrontBottomLeft.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Proj + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjFrontBottomRight.svg b/icons/themed/TechDraw_ProjFrontBottomRight.svg new file mode 100644 index 0000000000..3a4817eaf1 --- /dev/null +++ b/icons/themed/TechDraw_ProjFrontBottomRight.svg @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Proj + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjFrontTopLeft.svg b/icons/themed/TechDraw_ProjFrontTopLeft.svg new file mode 100644 index 0000000000..169100cf49 --- /dev/null +++ b/icons/themed/TechDraw_ProjFrontTopLeft.svg @@ -0,0 +1,233 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Proj + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjFrontTopRight.svg b/icons/themed/TechDraw_ProjFrontTopRight.svg new file mode 100644 index 0000000000..bcc5e64e9d --- /dev/null +++ b/icons/themed/TechDraw_ProjFrontTopRight.svg @@ -0,0 +1,270 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Proj + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjLeft.svg b/icons/themed/TechDraw_ProjLeft.svg new file mode 100644 index 0000000000..3156889608 --- /dev/null +++ b/icons/themed/TechDraw_ProjLeft.svg @@ -0,0 +1,249 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_ProjLeft.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjRear.svg b/icons/themed/TechDraw_ProjRear.svg new file mode 100644 index 0000000000..62d8bf506b --- /dev/null +++ b/icons/themed/TechDraw_ProjRear.svg @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_ProjRear.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjRight.svg b/icons/themed/TechDraw_ProjRight.svg new file mode 100644 index 0000000000..5eecfb32d3 --- /dev/null +++ b/icons/themed/TechDraw_ProjRight.svg @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_ProjRight.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjTop.svg b/icons/themed/TechDraw_ProjTop.svg new file mode 100644 index 0000000000..fd1aadfbd6 --- /dev/null +++ b/icons/themed/TechDraw_ProjTop.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_ProjTop.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjectShape.svg b/icons/themed/TechDraw_ProjectShape.svg new file mode 100644 index 0000000000..68069345cb --- /dev/null +++ b/icons/themed/TechDraw_ProjectShape.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ProjectionGroup.svg b/icons/themed/TechDraw_ProjectionGroup.svg new file mode 100644 index 0000000000..30de1ed319 --- /dev/null +++ b/icons/themed/TechDraw_ProjectionGroup.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Quadrants.svg b/icons/themed/TechDraw_Quadrants.svg new file mode 100644 index 0000000000..f63f089e96 --- /dev/null +++ b/icons/themed/TechDraw_Quadrants.svg @@ -0,0 +1,362 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_RadiusDimension.svg b/icons/themed/TechDraw_RadiusDimension.svg new file mode 100644 index 0000000000..9962edf390 --- /dev/null +++ b/icons/themed/TechDraw_RadiusDimension.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_Dimension_Radius + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Radius.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + radius + arc + + + Arrow pointing from centre to arc + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_RedrawPage.svg b/icons/themed/TechDraw_RedrawPage.svg new file mode 100644 index 0000000000..4412ef8e42 --- /dev/null +++ b/icons/themed/TechDraw_RedrawPage.svg @@ -0,0 +1,171 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_RefError.svg b/icons/themed/TechDraw_RefError.svg new file mode 100644 index 0000000000..f461226d62 --- /dev/null +++ b/icons/themed/TechDraw_RefError.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_RichTextAnnotation.svg b/icons/themed/TechDraw_RichTextAnnotation.svg new file mode 100644 index 0000000000..6a9adf0d4c --- /dev/null +++ b/icons/themed/TechDraw_RichTextAnnotation.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + image/svg+xml + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_SectionView.svg b/icons/themed/TechDraw_SectionView.svg new file mode 100644 index 0000000000..50cc22f889 --- /dev/null +++ b/icons/themed/TechDraw_SectionView.svg @@ -0,0 +1,56 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ShareView.svg b/icons/themed/TechDraw_ShareView.svg new file mode 100644 index 0000000000..e35f57df48 --- /dev/null +++ b/icons/themed/TechDraw_ShareView.svg @@ -0,0 +1,227 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_ShowAll.svg b/icons/themed/TechDraw_ShowAll.svg new file mode 100644 index 0000000000..ac3566c28e --- /dev/null +++ b/icons/themed/TechDraw_ShowAll.svg @@ -0,0 +1,174 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_SpreadsheetView.svg b/icons/themed/TechDraw_SpreadsheetView.svg new file mode 100644 index 0000000000..84445d720b --- /dev/null +++ b/icons/themed/TechDraw_SpreadsheetView.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_StackBottom.svg b/icons/themed/TechDraw_StackBottom.svg new file mode 100644 index 0000000000..3211fde2db --- /dev/null +++ b/icons/themed/TechDraw_StackBottom.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_StackDown.svg b/icons/themed/TechDraw_StackDown.svg new file mode 100644 index 0000000000..6ff07cfb38 --- /dev/null +++ b/icons/themed/TechDraw_StackDown.svg @@ -0,0 +1,95 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_StackTop.svg b/icons/themed/TechDraw_StackTop.svg new file mode 100644 index 0000000000..1168b52301 --- /dev/null +++ b/icons/themed/TechDraw_StackTop.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_StackUp.svg b/icons/themed/TechDraw_StackUp.svg new file mode 100644 index 0000000000..49e589a719 --- /dev/null +++ b/icons/themed/TechDraw_StackUp.svg @@ -0,0 +1,96 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_SurfaceFinishSymbols.svg b/icons/themed/TechDraw_SurfaceFinishSymbols.svg new file mode 100644 index 0000000000..5fd991564f --- /dev/null +++ b/icons/themed/TechDraw_SurfaceFinishSymbols.svg @@ -0,0 +1,334 @@ + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Symbol.svg b/icons/themed/TechDraw_Symbol.svg new file mode 100644 index 0000000000..6bbac10d11 --- /dev/null +++ b/icons/themed/TechDraw_Symbol.svg @@ -0,0 +1,356 @@ + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_Symbol.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_Tile.svg b/icons/themed/TechDraw_Tile.svg new file mode 100644 index 0000000000..76df2261a8 --- /dev/null +++ b/icons/themed/TechDraw_Tile.svg @@ -0,0 +1,158 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/TechDraw_ToggleFrame.svg b/icons/themed/TechDraw_ToggleFrame.svg new file mode 100644 index 0000000000..007aa7d7b0 --- /dev/null +++ b/icons/themed/TechDraw_ToggleFrame.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeHatch.svg b/icons/themed/TechDraw_TreeHatch.svg new file mode 100644 index 0000000000..5d9fc99383 --- /dev/null +++ b/icons/themed/TechDraw_TreeHatch.svg @@ -0,0 +1,162 @@ + + + TechDraw_TreeHatch + + + + image/svg+xml + + TechDraw_TreeHatch + + + [WandererFan] + + + TechDraw_TreeHatch + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeHatch.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeMulti.svg b/icons/themed/TechDraw_TreeMulti.svg new file mode 100644 index 0000000000..344a58f712 --- /dev/null +++ b/icons/themed/TechDraw_TreeMulti.svg @@ -0,0 +1,155 @@ + + + TechDraw_TreeMulti + + + + + + + + + + + + + image/svg+xml + + TechDraw_TreeMulti + + + [WandererFan] + + + TechDraw_TreeMulti + 2016-10-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeMulti.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreePage.svg b/icons/themed/TechDraw_TreePage.svg new file mode 100644 index 0000000000..e92d8b8ac2 --- /dev/null +++ b/icons/themed/TechDraw_TreePage.svg @@ -0,0 +1,92 @@ + + + TechDraw_TreePage + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_TreePage + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreePage.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreePageSync.svg b/icons/themed/TechDraw_TreePageSync.svg new file mode 100644 index 0000000000..68ebffee4d --- /dev/null +++ b/icons/themed/TechDraw_TreePageSync.svg @@ -0,0 +1,515 @@ + + + TechDraw_TreePageSync + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + TechDraw_TreePageSync + + + reload + refresh + view + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreePageTemplate.svg b/icons/themed/TechDraw_TreePageTemplate.svg new file mode 100644 index 0000000000..3d6dbc6875 --- /dev/null +++ b/icons/themed/TechDraw_TreePageTemplate.svg @@ -0,0 +1,268 @@ + + + TechDraw_TreePageTemplate + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + TechDraw_TreePageTemplate + + + [WandererFan] + + + TechDraw_TreePageTemplate + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreePageTemplate.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreePageUnsync.svg b/icons/themed/TechDraw_TreePageUnsync.svg new file mode 100644 index 0000000000..be80194bc2 --- /dev/null +++ b/icons/themed/TechDraw_TreePageUnsync.svg @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeProjGroup.svg b/icons/themed/TechDraw_TreeProjGroup.svg new file mode 100644 index 0000000000..374a3dab51 --- /dev/null +++ b/icons/themed/TechDraw_TreeProjGroup.svg @@ -0,0 +1,267 @@ + + + TechDraw_TreeProjGroup + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + TechDraw_TreeProjGroup + + + [WandererFan] + + + TechDraw_TreeProjGroup + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeProjGroup.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeSection.svg b/icons/themed/TechDraw_TreeSection.svg new file mode 100644 index 0000000000..990a5ff02f --- /dev/null +++ b/icons/themed/TechDraw_TreeSection.svg @@ -0,0 +1,140 @@ + + + TechDraw_TreeSection + + + + + + + + + + + + + + + + image/svg+xml + + TechDraw_TreeSection + + + [WandererFan] + + + TechDraw_TreeSection + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeSection.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeSpreadsheet.svg b/icons/themed/TechDraw_TreeSpreadsheet.svg new file mode 100644 index 0000000000..224943cfc7 --- /dev/null +++ b/icons/themed/TechDraw_TreeSpreadsheet.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeSymbol.svg b/icons/themed/TechDraw_TreeSymbol.svg new file mode 100644 index 0000000000..bc498eb459 --- /dev/null +++ b/icons/themed/TechDraw_TreeSymbol.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_TreeView.svg b/icons/themed/TechDraw_TreeView.svg new file mode 100644 index 0000000000..faff0caa25 --- /dev/null +++ b/icons/themed/TechDraw_TreeView.svg @@ -0,0 +1,131 @@ + + + TechDraw_TreeView + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + TechDraw_TreeView + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_TreeView.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + dashed line + monotone + + + Irregular shape in the center framed by a dashed outline + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_VerticalDimension.svg b/icons/themed/TechDraw_VerticalDimension.svg new file mode 100644 index 0000000000..9d348722c2 --- /dev/null +++ b/icons/themed/TechDraw_VerticalDimension.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-04-27 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/TechDraw_Dimension_Vertical.svg + + + FreeCAD LGPL2+ + + + + + double arrow + arrow + vertical + + + Vertical double arrow between two bars + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_VerticalExtentDimension.svg b/icons/themed/TechDraw_VerticalExtentDimension.svg new file mode 100644 index 0000000000..d1dcce02f3 --- /dev/null +++ b/icons/themed/TechDraw_VerticalExtentDimension.svg @@ -0,0 +1,124 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_View.svg b/icons/themed/TechDraw_View.svg new file mode 100644 index 0000000000..d411f12d59 --- /dev/null +++ b/icons/themed/TechDraw_View.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TechDraw_WeldSymbol.svg b/icons/themed/TechDraw_WeldSymbol.svg new file mode 100644 index 0000000000..77799436fa --- /dev/null +++ b/icons/themed/TechDraw_WeldSymbol.svg @@ -0,0 +1,228 @@ + +image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/TestWorkbench.svg b/icons/themed/TestWorkbench.svg new file mode 100644 index 0000000000..19a6b9b48a --- /dev/null +++ b/icons/themed/TestWorkbench.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icons/themed/TextDocument.svg b/icons/themed/TextDocument.svg new file mode 100644 index 0000000000..25c60f4d2f --- /dev/null +++ b/icons/themed/TextDocument.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + diff --git a/icons/themed/TreeItemInvisible.svg b/icons/themed/TreeItemInvisible.svg new file mode 100644 index 0000000000..6b5f0cc715 --- /dev/null +++ b/icons/themed/TreeItemInvisible.svg @@ -0,0 +1,606 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-FaceProfile + 2016-01-19 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path- + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/TreeItemVisible.svg b/icons/themed/TreeItemVisible.svg new file mode 100644 index 0000000000..aa4ed96e08 --- /dev/null +++ b/icons/themed/TreeItemVisible.svg @@ -0,0 +1,590 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-FaceProfile + 2016-01-19 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path- + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/Tree_Annotation.svg b/icons/themed/Tree_Annotation.svg new file mode 100644 index 0000000000..9b440650f6 --- /dev/null +++ b/icons/themed/Tree_Annotation.svg @@ -0,0 +1,143 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/Tree_Dimension.svg b/icons/themed/Tree_Dimension.svg new file mode 100644 index 0000000000..4ae1362d74 --- /dev/null +++ b/icons/themed/Tree_Dimension.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/icons/themed/Tree_Part.svg b/icons/themed/Tree_Part.svg new file mode 100644 index 0000000000..2f1dc143ac --- /dev/null +++ b/icons/themed/Tree_Part.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [wmayer] + + + Tree_Part + 2011-10-10 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/Tree_Part.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/Tree_Python.svg b/icons/themed/Tree_Python.svg new file mode 100644 index 0000000000..8465c17bab --- /dev/null +++ b/icons/themed/Tree_Python.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Unlink.svg b/icons/themed/Unlink.svg new file mode 100644 index 0000000000..9b5586088a --- /dev/null +++ b/icons/themed/Unlink.svg @@ -0,0 +1,121 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/VarSet.svg b/icons/themed/VarSet.svg new file mode 100644 index 0000000000..0b7c7960b0 --- /dev/null +++ b/icons/themed/VarSet.svg @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2005-10-15 + + + Andreas Nilsson + + + + + edit + copy + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/Warning.svg b/icons/themed/Warning.svg new file mode 100644 index 0000000000..2fe0537adf --- /dev/null +++ b/icons/themed/Warning.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/WhatsThis.svg b/icons/themed/WhatsThis.svg new file mode 100644 index 0000000000..8ddd9423a8 --- /dev/null +++ b/icons/themed/WhatsThis.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/accessories-calculator.svg b/icons/themed/accessories-calculator.svg new file mode 100644 index 0000000000..6fce0ff869 --- /dev/null +++ b/icons/themed/accessories-calculator.svg @@ -0,0 +1,315 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + + + + + + + + + calc + calculator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/accessories-text-editor.svg b/icons/themed/accessories-text-editor.svg new file mode 100644 index 0000000000..ed383ae099 --- /dev/null +++ b/icons/themed/accessories-text-editor.svg @@ -0,0 +1,285 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/addon_manager.svg b/icons/themed/addon_manager.svg new file mode 100644 index 0000000000..bd9d8d51d3 --- /dev/null +++ b/icons/themed/addon_manager.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/addon_manager_with_warning.svg b/icons/themed/addon_manager_with_warning.svg new file mode 100644 index 0000000000..8bcf1cfa9d --- /dev/null +++ b/icons/themed/addon_manager_with_warning.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/align-to-selection.svg b/icons/themed/align-to-selection.svg new file mode 100644 index 0000000000..80624445e9 --- /dev/null +++ b/icons/themed/align-to-selection.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + diff --git a/icons/themed/application-exit.svg b/icons/themed/application-exit.svg new file mode 100644 index 0000000000..eefbfa2e91 --- /dev/null +++ b/icons/themed/application-exit.svg @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + + + log out + logout + exit + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/applications-accessories.svg b/icons/themed/applications-accessories.svg new file mode 100644 index 0000000000..d74e8adb17 --- /dev/null +++ b/icons/themed/applications-accessories.svg @@ -0,0 +1,250 @@ + +image/svg+xmljakub Steinerhttp://jimmac.musichall.czhomereturngodefaultuserdirectory + + diff --git a/icons/themed/applications-python.svg b/icons/themed/applications-python.svg new file mode 100644 index 0000000000..8fc9a26721 --- /dev/null +++ b/icons/themed/applications-python.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/arrow-ccw.svg b/icons/themed/arrow-ccw.svg new file mode 100644 index 0000000000..7d9e5903a7 --- /dev/null +++ b/icons/themed/arrow-ccw.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Rotate.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + An arrow in a circular shape with the head curving towards the tail + + + arrow + curved + refresh + rotate + + + arrow-ccw + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/arrow-cw.svg b/icons/themed/arrow-cw.svg new file mode 100644 index 0000000000..375ba5e3b0 --- /dev/null +++ b/icons/themed/arrow-cw.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Rotate.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + An arrow in a circular shape with the head curving towards the tail + + + arrow + curved + refresh + rotate + + + arrow-cw + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/arrow-down.svg b/icons/themed/arrow-down.svg new file mode 100644 index 0000000000..be4eb9602a --- /dev/null +++ b/icons/themed/arrow-down.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-down + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-down.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + down + + + Arrow pointing down + + + + + + + + diff --git a/icons/themed/arrow-left-down.svg b/icons/themed/arrow-left-down.svg new file mode 100644 index 0000000000..1f2fc1e0e9 --- /dev/null +++ b/icons/themed/arrow-left-down.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + diff --git a/icons/themed/arrow-left-up.svg b/icons/themed/arrow-left-up.svg new file mode 100644 index 0000000000..2167a96d61 --- /dev/null +++ b/icons/themed/arrow-left-up.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + diff --git a/icons/themed/arrow-left.svg b/icons/themed/arrow-left.svg new file mode 100644 index 0000000000..16a3364401 --- /dev/null +++ b/icons/themed/arrow-left.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + diff --git a/icons/themed/arrow-right-down.svg b/icons/themed/arrow-right-down.svg new file mode 100644 index 0000000000..6d45fe7b20 --- /dev/null +++ b/icons/themed/arrow-right-down.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + diff --git a/icons/themed/arrow-right-up.svg b/icons/themed/arrow-right-up.svg new file mode 100644 index 0000000000..64c550e0e1 --- /dev/null +++ b/icons/themed/arrow-right-up.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + diff --git a/icons/themed/arrow-right.svg b/icons/themed/arrow-right.svg new file mode 100644 index 0000000000..0878e98836 --- /dev/null +++ b/icons/themed/arrow-right.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-right + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-right.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + right + + + Arrow pointing right + + + + + + + + diff --git a/icons/themed/arrow-up.svg b/icons/themed/arrow-up.svg new file mode 100644 index 0000000000..3f5b9b6907 --- /dev/null +++ b/icons/themed/arrow-up.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-up + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-up.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + up + + + Arrow pointing upwards + + + + + + + + diff --git a/icons/themed/arrowdot.svg b/icons/themed/arrowdot.svg new file mode 100644 index 0000000000..281c20c679 --- /dev/null +++ b/icons/themed/arrowdot.svg @@ -0,0 +1,52 @@ + + + + + arrow-cw + + + + + image/svg+xml + + arrow-cw + + + + + + + + + + diff --git a/icons/themed/arrowfilled.svg b/icons/themed/arrowfilled.svg new file mode 100644 index 0000000000..7457173b7f --- /dev/null +++ b/icons/themed/arrowfilled.svg @@ -0,0 +1,61 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/arrowfork.svg b/icons/themed/arrowfork.svg new file mode 100644 index 0000000000..72a7e19c25 --- /dev/null +++ b/icons/themed/arrowfork.svg @@ -0,0 +1,77 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/arrownone.svg b/icons/themed/arrownone.svg new file mode 100644 index 0000000000..12f21f2a32 --- /dev/null +++ b/icons/themed/arrownone.svg @@ -0,0 +1,37 @@ + + + + + + + image/svg+xml + + + + + + + + + diff --git a/icons/themed/arrowopen.svg b/icons/themed/arrowopen.svg new file mode 100644 index 0000000000..12a2a034d8 --- /dev/null +++ b/icons/themed/arrowopen.svg @@ -0,0 +1,84 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/arrowopendot.svg b/icons/themed/arrowopendot.svg new file mode 100644 index 0000000000..676fcbd2ae --- /dev/null +++ b/icons/themed/arrowopendot.svg @@ -0,0 +1,58 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/arrowpyramid.svg b/icons/themed/arrowpyramid.svg new file mode 100644 index 0000000000..db65eaf8cb --- /dev/null +++ b/icons/themed/arrowpyramid.svg @@ -0,0 +1,48 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/arrowtick.svg b/icons/themed/arrowtick.svg new file mode 100644 index 0000000000..d0efd9a5c5 --- /dev/null +++ b/icons/themed/arrowtick.svg @@ -0,0 +1,73 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/bgColor.svg b/icons/themed/bgColor.svg new file mode 100644 index 0000000000..a14eeb9add --- /dev/null +++ b/icons/themed/bgColor.svg @@ -0,0 +1,618 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + a + diff --git a/icons/themed/bottomline.svg b/icons/themed/bottomline.svg new file mode 100644 index 0000000000..a817c9e69a --- /dev/null +++ b/icons/themed/bottomline.svg @@ -0,0 +1,34 @@ + + + + + + + image/svg+xml + + + + + + + + diff --git a/icons/themed/bound-expression-unset.svg b/icons/themed/bound-expression-unset.svg new file mode 100644 index 0000000000..228db22f26 --- /dev/null +++ b/icons/themed/bound-expression-unset.svg @@ -0,0 +1,73 @@ + + + +Alfredo MonclusFreeCAD LGPL2+FreeCAD diff --git a/icons/themed/bound-expression.svg b/icons/themed/bound-expression.svg new file mode 100644 index 0000000000..a22a8110e8 --- /dev/null +++ b/icons/themed/bound-expression.svg @@ -0,0 +1,71 @@ + + + +Alfredo MonclusFreeCAD LGPL2+FreeCAD diff --git a/icons/themed/breakpoint.svg b/icons/themed/breakpoint.svg new file mode 100644 index 0000000000..5a25bf1203 --- /dev/null +++ b/icons/themed/breakpoint.svg @@ -0,0 +1,588 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/bulb.svg b/icons/themed/bulb.svg new file mode 100644 index 0000000000..fa7528dce2 --- /dev/null +++ b/icons/themed/bulb.svg @@ -0,0 +1,656 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_add_all.svg b/icons/themed/button_add_all.svg new file mode 100644 index 0000000000..50d134dad3 --- /dev/null +++ b/icons/themed/button_add_all.svg @@ -0,0 +1,567 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_down.svg b/icons/themed/button_down.svg new file mode 100644 index 0000000000..6df5cb1787 --- /dev/null +++ b/icons/themed/button_down.svg @@ -0,0 +1,510 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_invalid.svg b/icons/themed/button_invalid.svg new file mode 100644 index 0000000000..685289a41e --- /dev/null +++ b/icons/themed/button_invalid.svg @@ -0,0 +1,264 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_left.svg b/icons/themed/button_left.svg new file mode 100644 index 0000000000..5c491a6a3a --- /dev/null +++ b/icons/themed/button_left.svg @@ -0,0 +1,510 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_right.svg b/icons/themed/button_right.svg new file mode 100644 index 0000000000..6e86196521 --- /dev/null +++ b/icons/themed/button_right.svg @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_rotate.svg b/icons/themed/button_rotate.svg new file mode 100644 index 0000000000..c771dd0abe --- /dev/null +++ b/icons/themed/button_rotate.svg @@ -0,0 +1,552 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_sort.svg b/icons/themed/button_sort.svg new file mode 100644 index 0000000000..005c427685 --- /dev/null +++ b/icons/themed/button_sort.svg @@ -0,0 +1,576 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_up.svg b/icons/themed/button_up.svg new file mode 100644 index 0000000000..b959f0686d --- /dev/null +++ b/icons/themed/button_up.svg @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/button_valid.svg b/icons/themed/button_valid.svg new file mode 100644 index 0000000000..3b53530e3c --- /dev/null +++ b/icons/themed/button_valid.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/circular.svg b/icons/themed/circular.svg new file mode 100644 index 0000000000..ef2d1f2c10 --- /dev/null +++ b/icons/themed/circular.svg @@ -0,0 +1,31 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/icons/themed/clear-selection.svg b/icons/themed/clear-selection.svg new file mode 100644 index 0000000000..1146fe7167 --- /dev/null +++ b/icons/themed/clear-selection.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/colors.svg b/icons/themed/colors.svg new file mode 100644 index 0000000000..e1d29bd30c --- /dev/null +++ b/icons/themed/colors.svg @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/compact_view.svg b/icons/themed/compact_view.svg new file mode 100644 index 0000000000..5b0ea2dfd3 --- /dev/null +++ b/icons/themed/compact_view.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/composite_view.svg b/icons/themed/composite_view.svg new file mode 100644 index 0000000000..e52d573c7b --- /dev/null +++ b/icons/themed/composite_view.svg @@ -0,0 +1,217 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/const_member.svg b/icons/themed/const_member.svg new file mode 100644 index 0000000000..9ee75118e0 --- /dev/null +++ b/icons/themed/const_member.svg @@ -0,0 +1,282 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/continuous-line.svg b/icons/themed/continuous-line.svg new file mode 100644 index 0000000000..f857efdaec --- /dev/null +++ b/icons/themed/continuous-line.svg @@ -0,0 +1,34 @@ + + + + + + + image/svg+xml + + + + + + + + diff --git a/icons/themed/critical-info.svg b/icons/themed/critical-info.svg new file mode 100644 index 0000000000..b344608346 --- /dev/null +++ b/icons/themed/critical-info.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/cursor-pan.svg b/icons/themed/cursor-pan.svg new file mode 100644 index 0000000000..6793159bf0 --- /dev/null +++ b/icons/themed/cursor-pan.svg @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/icons/themed/cursor-rotate.svg b/icons/themed/cursor-rotate.svg new file mode 100644 index 0000000000..7dbe6665bd --- /dev/null +++ b/icons/themed/cursor-rotate.svg @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/icons/themed/cursor-through.svg b/icons/themed/cursor-through.svg new file mode 100644 index 0000000000..723942189f --- /dev/null +++ b/icons/themed/cursor-through.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + diff --git a/icons/themed/cursor-zoom.svg b/icons/themed/cursor-zoom.svg new file mode 100644 index 0000000000..b9953f997b --- /dev/null +++ b/icons/themed/cursor-zoom.svg @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/icons/themed/dagViewFail.svg b/icons/themed/dagViewFail.svg new file mode 100644 index 0000000000..ac1b3fc096 --- /dev/null +++ b/icons/themed/dagViewFail.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/dagViewPass.svg b/icons/themed/dagViewPass.svg new file mode 100644 index 0000000000..902e784128 --- /dev/null +++ b/icons/themed/dagViewPass.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/dagViewPending.svg b/icons/themed/dagViewPending.svg new file mode 100644 index 0000000000..db0244d790 --- /dev/null +++ b/icons/themed/dagViewPending.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/dagViewVisible.svg b/icons/themed/dagViewVisible.svg new file mode 100644 index 0000000000..6106c4d0d5 --- /dev/null +++ b/icons/themed/dagViewVisible.svg @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/dash-line.svg b/icons/themed/dash-line.svg new file mode 100644 index 0000000000..5bc91a0352 --- /dev/null +++ b/icons/themed/dash-line.svg @@ -0,0 +1,34 @@ + + + + + + + image/svg+xml + + + + + + + + diff --git a/icons/themed/dashDot-line.svg b/icons/themed/dashDot-line.svg new file mode 100644 index 0000000000..c3216c8cde --- /dev/null +++ b/icons/themed/dashDot-line.svg @@ -0,0 +1,46 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/dashDotDot-line.svg b/icons/themed/dashDotDot-line.svg new file mode 100644 index 0000000000..8a92d71a5b --- /dev/null +++ b/icons/themed/dashDotDot-line.svg @@ -0,0 +1,51 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/debug-marker.svg b/icons/themed/debug-marker.svg new file mode 100644 index 0000000000..7c232382d2 --- /dev/null +++ b/icons/themed/debug-marker.svg @@ -0,0 +1,530 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/debug-start.svg b/icons/themed/debug-start.svg new file mode 100644 index 0000000000..a20062a829 --- /dev/null +++ b/icons/themed/debug-start.svg @@ -0,0 +1,268 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Lapo Calamandrei + + + + + + play + media + music + video + player + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/debug-stop.svg b/icons/themed/debug-stop.svg new file mode 100644 index 0000000000..ffc050174f --- /dev/null +++ b/icons/themed/debug-stop.svg @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/delete.svg b/icons/themed/delete.svg new file mode 100644 index 0000000000..9e7303cf51 --- /dev/null +++ b/icons/themed/delete.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/icons/themed/document-new.svg b/icons/themed/document-new.svg new file mode 100644 index 0000000000..6ae88be8ad --- /dev/null +++ b/icons/themed/document-new.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + diff --git a/icons/themed/document-open.svg b/icons/themed/document-open.svg new file mode 100644 index 0000000000..07aad26ac5 --- /dev/null +++ b/icons/themed/document-open.svg @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + diff --git a/icons/themed/document-package.svg b/icons/themed/document-package.svg new file mode 100644 index 0000000000..d0e0cdca97 --- /dev/null +++ b/icons/themed/document-package.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/document-print-preview.svg b/icons/themed/document-print-preview.svg new file mode 100644 index 0000000000..6d2c8db10f --- /dev/null +++ b/icons/themed/document-print-preview.svg @@ -0,0 +1,248 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/document-print.svg b/icons/themed/document-print.svg new file mode 100644 index 0000000000..1c72618332 --- /dev/null +++ b/icons/themed/document-print.svg @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/document-properties.svg b/icons/themed/document-properties.svg new file mode 100644 index 0000000000..8a015768e4 --- /dev/null +++ b/icons/themed/document-properties.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + diff --git a/icons/themed/document-python.svg b/icons/themed/document-python.svg new file mode 100644 index 0000000000..5e767f77ca --- /dev/null +++ b/icons/themed/document-python.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + diff --git a/icons/themed/document-save-as.svg b/icons/themed/document-save-as.svg new file mode 100644 index 0000000000..6fda4a6241 --- /dev/null +++ b/icons/themed/document-save-as.svg @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/document-save.svg b/icons/themed/document-save.svg new file mode 100644 index 0000000000..51b008c53c --- /dev/null +++ b/icons/themed/document-save.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + diff --git a/icons/themed/dot-line.svg b/icons/themed/dot-line.svg new file mode 100644 index 0000000000..c589026677 --- /dev/null +++ b/icons/themed/dot-line.svg @@ -0,0 +1,32 @@ + + + + + + + image/svg+xml + + + + + + + + diff --git a/icons/themed/edge-join-miter-not.svg b/icons/themed/edge-join-miter-not.svg new file mode 100644 index 0000000000..6237e711de --- /dev/null +++ b/icons/themed/edge-join-miter-not.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/edge-join-miter.svg b/icons/themed/edge-join-miter.svg new file mode 100644 index 0000000000..1d9b00de34 --- /dev/null +++ b/icons/themed/edge-join-miter.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/edge-join-round-not.svg b/icons/themed/edge-join-round-not.svg new file mode 100644 index 0000000000..13b211c547 --- /dev/null +++ b/icons/themed/edge-join-round-not.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/edge-join-round.svg b/icons/themed/edge-join-round.svg new file mode 100644 index 0000000000..ee9a453580 --- /dev/null +++ b/icons/themed/edge-join-round.svg @@ -0,0 +1,101 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + diff --git a/icons/themed/edge-selection.svg b/icons/themed/edge-selection.svg new file mode 100644 index 0000000000..b0ea9e2de3 --- /dev/null +++ b/icons/themed/edge-selection.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-cleartext.svg b/icons/themed/edit-cleartext.svg new file mode 100644 index 0000000000..775fa0777e --- /dev/null +++ b/icons/themed/edit-cleartext.svg @@ -0,0 +1,1276 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-copy.svg b/icons/themed/edit-copy.svg new file mode 100644 index 0000000000..2e992e7ab2 --- /dev/null +++ b/icons/themed/edit-copy.svg @@ -0,0 +1,216 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-cut.svg b/icons/themed/edit-cut.svg new file mode 100644 index 0000000000..0ba058619d --- /dev/null +++ b/icons/themed/edit-cut.svg @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-delete.svg b/icons/themed/edit-delete.svg new file mode 100644 index 0000000000..171c2952ec --- /dev/null +++ b/icons/themed/edit-delete.svg @@ -0,0 +1,102 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + diff --git a/icons/themed/edit-edit.svg b/icons/themed/edit-edit.svg new file mode 100644 index 0000000000..8ed53b9c35 --- /dev/null +++ b/icons/themed/edit-edit.svg @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-element-select-box-cross.svg b/icons/themed/edit-element-select-box-cross.svg new file mode 100644 index 0000000000..1344411bc3 --- /dev/null +++ b/icons/themed/edit-element-select-box-cross.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-element-select-box.svg b/icons/themed/edit-element-select-box.svg new file mode 100644 index 0000000000..2d17bb7222 --- /dev/null +++ b/icons/themed/edit-element-select-box.svg @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-paste.svg b/icons/themed/edit-paste.svg new file mode 100644 index 0000000000..9490ec3b0e --- /dev/null +++ b/icons/themed/edit-paste.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-redo.svg b/icons/themed/edit-redo.svg new file mode 100644 index 0000000000..805392d904 --- /dev/null +++ b/icons/themed/edit-redo.svg @@ -0,0 +1,73 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/edit-select-all.svg b/icons/themed/edit-select-all.svg new file mode 100644 index 0000000000..2e95da2e59 --- /dev/null +++ b/icons/themed/edit-select-all.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/edit-select-box-cross.svg b/icons/themed/edit-select-box-cross.svg new file mode 100644 index 0000000000..504f2fe771 --- /dev/null +++ b/icons/themed/edit-select-box-cross.svg @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/edit-select-box.svg b/icons/themed/edit-select-box.svg new file mode 100644 index 0000000000..cd560184ab --- /dev/null +++ b/icons/themed/edit-select-box.svg @@ -0,0 +1,163 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/edit-undo.svg b/icons/themed/edit-undo.svg new file mode 100644 index 0000000000..d595aa4a63 --- /dev/null +++ b/icons/themed/edit-undo.svg @@ -0,0 +1,73 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/edit_Cancel.svg b/icons/themed/edit_Cancel.svg new file mode 100644 index 0000000000..61900912bb --- /dev/null +++ b/icons/themed/edit_Cancel.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/edit_OK.svg b/icons/themed/edit_OK.svg new file mode 100644 index 0000000000..e1fa457b6a --- /dev/null +++ b/icons/themed/edit_OK.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/expanded_view.svg b/icons/themed/expanded_view.svg new file mode 100644 index 0000000000..e6c00e7a39 --- /dev/null +++ b/icons/themed/expanded_view.svg @@ -0,0 +1,224 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/face-selection.svg b/icons/themed/face-selection.svg new file mode 100644 index 0000000000..4e0db773f4 --- /dev/null +++ b/icons/themed/face-selection.svg @@ -0,0 +1,218 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/feature_suppressed.svg b/icons/themed/feature_suppressed.svg new file mode 100644 index 0000000000..daa902da83 --- /dev/null +++ b/icons/themed/feature_suppressed.svg @@ -0,0 +1,310 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Path-FaceProfile + 2016-01-19 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path- + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + diff --git a/icons/themed/fem-add-fem-mesh.svg b/icons/themed/fem-add-fem-mesh.svg new file mode 100644 index 0000000000..c717a82524 --- /dev/null +++ b/icons/themed/fem-add-fem-mesh.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-add-fem-mesh + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-add-material.svg b/icons/themed/fem-add-material.svg new file mode 100644 index 0000000000..451d2926ef --- /dev/null +++ b/icons/themed/fem-add-material.svg @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-add-material + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-add-part.svg b/icons/themed/fem-add-part.svg new file mode 100644 index 0000000000..a15bf53657 --- /dev/null +++ b/icons/themed/fem-add-part.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-add-part + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-femmesh-from-shape.svg b/icons/themed/fem-femmesh-from-shape.svg new file mode 100644 index 0000000000..ea07f05a6a --- /dev/null +++ b/icons/themed/fem-femmesh-from-shape.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Bernd Hahnebach] + + + fem-femmesh-from-shape + 2016-11-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-post-geo-box.svg b/icons/themed/fem-post-geo-box.svg new file mode 100644 index 0000000000..ee9d38da6f --- /dev/null +++ b/icons/themed/fem-post-geo-box.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Stefan Tröger] + + + fem-box + 2015-11-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/fem-post-geo-cylinder.svg b/icons/themed/fem-post-geo-cylinder.svg new file mode 100644 index 0000000000..46670b2bb5 --- /dev/null +++ b/icons/themed/fem-post-geo-cylinder.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Stefan Tröger] + + + fem-cylinder + 2015-11-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/fem-post-geo-isosurface.svg b/icons/themed/fem-post-geo-isosurface.svg new file mode 100644 index 0000000000..1757021bb7 --- /dev/null +++ b/icons/themed/fem-post-geo-isosurface.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Alexander Gryson] + + + fem-isosurface + 2017-03-11 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-post-geo-plane.svg b/icons/themed/fem-post-geo-plane.svg new file mode 100644 index 0000000000..b501b243c2 --- /dev/null +++ b/icons/themed/fem-post-geo-plane.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Stefan Tröger] + + + fem-plane + 2015-11-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + diff --git a/icons/themed/fem-post-geo-sphere.svg b/icons/themed/fem-post-geo-sphere.svg new file mode 100644 index 0000000000..280ae4133f --- /dev/null +++ b/icons/themed/fem-post-geo-sphere.svg @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Stefan Tröger] + + + fem-sphere + 2015-11-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/fem-solver-analysis-buckling.svg b/icons/themed/fem-solver-analysis-buckling.svg new file mode 100644 index 0000000000..59938db7ff --- /dev/null +++ b/icons/themed/fem-solver-analysis-buckling.svg @@ -0,0 +1,496 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-solver-analysis-checkmesh.svg b/icons/themed/fem-solver-analysis-checkmesh.svg new file mode 100644 index 0000000000..a0befca659 --- /dev/null +++ b/icons/themed/fem-solver-analysis-checkmesh.svg @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-solver-analysis-frequency.svg b/icons/themed/fem-solver-analysis-frequency.svg new file mode 100644 index 0000000000..cd958f6d7f --- /dev/null +++ b/icons/themed/fem-solver-analysis-frequency.svg @@ -0,0 +1,281 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [Przemo Firszt] + + + fem-frequency-analysis + 2015-09-05 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + diff --git a/icons/themed/fem-solver-analysis-static.svg b/icons/themed/fem-solver-analysis-static.svg new file mode 100644 index 0000000000..dfc3faa3be --- /dev/null +++ b/icons/themed/fem-solver-analysis-static.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + fem-static-analysis + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-solver-analysis-thermomechanical.svg b/icons/themed/fem-solver-analysis-thermomechanical.svg new file mode 100644 index 0000000000..5dc492e469 --- /dev/null +++ b/icons/themed/fem-solver-analysis-thermomechanical.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [vdwalts] + + + fem-thermomechanical-analysis + 2016-08-01 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/fem-solver-inp-editor.svg b/icons/themed/fem-solver-inp-editor.svg new file mode 100644 index 0000000000..05258d0eb8 --- /dev/null +++ b/icons/themed/fem-solver-inp-editor.svg @@ -0,0 +1,181 @@ + + + + + + image/svg+xml + + + + + + + + http://jimmac.musichall.cz + + + + fem-inp-editor + 2015-07-28 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/ + + + FreeCAD LGPL2+ + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/fgColor.svg b/icons/themed/fgColor.svg new file mode 100644 index 0000000000..188203855e --- /dev/null +++ b/icons/themed/fgColor.svg @@ -0,0 +1,625 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + a + diff --git a/icons/themed/folder.svg b/icons/themed/folder.svg new file mode 100644 index 0000000000..01f1860a32 --- /dev/null +++ b/icons/themed/folder.svg @@ -0,0 +1,77 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/forbidden.svg b/icons/themed/forbidden.svg new file mode 100644 index 0000000000..a4d90f18db --- /dev/null +++ b/icons/themed/forbidden.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + diff --git a/icons/themed/freecad-doc.svg b/icons/themed/freecad-doc.svg new file mode 100644 index 0000000000..e9b0b9a8c0 --- /dev/null +++ b/icons/themed/freecad-doc.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + diff --git a/icons/themed/freecad.svg b/icons/themed/freecad.svg new file mode 100644 index 0000000000..805b45fdbd --- /dev/null +++ b/icons/themed/freecad.svg @@ -0,0 +1,33 @@ + + + +FreeCADFreeCAD diff --git a/icons/themed/freecadabout.svg b/icons/themed/freecadabout.svg new file mode 100644 index 0000000000..a5c4bd295b --- /dev/null +++ b/icons/themed/freecadabout.svg @@ -0,0 +1,554 @@ + + + +version 1.2 diff --git a/icons/themed/gear.svg b/icons/themed/gear.svg new file mode 100644 index 0000000000..7cdd65e23e --- /dev/null +++ b/icons/themed/gear.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + diff --git a/icons/themed/help-browser.svg b/icons/themed/help-browser.svg new file mode 100644 index 0000000000..6f93ca77e7 --- /dev/null +++ b/icons/themed/help-browser.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Help Browser + 2005-11-06 + + + Tuomas Kuosmanen + + + + + help + browser + documentation + docs + man + info + + + + + + Jakub Steiner, Andreas Nilsson + + + http://tigert.com + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/hexagon.svg b/icons/themed/hexagon.svg new file mode 100644 index 0000000000..f71d6d6651 --- /dev/null +++ b/icons/themed/hexagon.svg @@ -0,0 +1,31 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/icons/themed/image-open.svg b/icons/themed/image-open.svg new file mode 100644 index 0000000000..d342acbe25 --- /dev/null +++ b/icons/themed/image-open.svg @@ -0,0 +1,480 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Macro.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + flower + macro + + + A two leaved flower, similar in form to a tulip + + + + diff --git a/icons/themed/image-plane.svg b/icons/themed/image-plane.svg new file mode 100644 index 0000000000..5787fe2855 --- /dev/null +++ b/icons/themed/image-plane.svg @@ -0,0 +1,557 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Drawing.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + arrow + page + shapes + + + An arrow pointing from left to right onto a page with shapes drawn on it + + + + diff --git a/icons/themed/image-scaling.svg b/icons/themed/image-scaling.svg new file mode 100644 index 0000000000..b08faeddac --- /dev/null +++ b/icons/themed/image-scaling.svg @@ -0,0 +1,349 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Scale.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + square + arrow + dotted line + + + + A small square in the bottom left corner of a large dotted box with an arrow pointing from the top left corner of the inner box to the top left corner of the outer box + + + + diff --git a/icons/themed/indentLess.svg b/icons/themed/indentLess.svg new file mode 100644 index 0000000000..4f0e709da9 --- /dev/null +++ b/icons/themed/indentLess.svg @@ -0,0 +1,660 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/indentMore.svg b/icons/themed/indentMore.svg new file mode 100644 index 0000000000..d73b720a58 --- /dev/null +++ b/icons/themed/indentMore.svg @@ -0,0 +1,655 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/info.svg b/icons/themed/info.svg new file mode 100644 index 0000000000..c0f7ebec9d --- /dev/null +++ b/icons/themed/info.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/insertImage.svg b/icons/themed/insertImage.svg new file mode 100644 index 0000000000..884e2e1ed7 --- /dev/null +++ b/icons/themed/insertImage.svg @@ -0,0 +1,1017 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + TechDraw_Image + 2016-11-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_Image.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/inspect_pipette.svg b/icons/themed/inspect_pipette.svg new file mode 100644 index 0000000000..cc9a6bafc0 --- /dev/null +++ b/icons/themed/inspect_pipette.svg @@ -0,0 +1,253 @@ + + + + + mesh_pipette + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + mesh_pipette + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Mesh/Gui/Resources/icons/mesh_pipette.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + pipette + eyedropper + sample + + + Pipette or eyedropper lit from above + + + [agryson] Alexander Gryson + + + Sat Feb 8 16:10:16 2014 +0100 + + + [wmayer] + + + + + + + + + + + + + + + + + diff --git a/icons/themed/inspection.svg b/icons/themed/inspection.svg new file mode 100644 index 0000000000..7d41b67012 --- /dev/null +++ b/icons/themed/inspection.svg @@ -0,0 +1,48 @@ + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/internet-web-browser.svg b/icons/themed/internet-web-browser.svg new file mode 100644 index 0000000000..12a92f802c --- /dev/null +++ b/icons/themed/internet-web-browser.svg @@ -0,0 +1,3085 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Globe + + + Jakub Steiner + + + + + Tuomas Kuosmanen + + + + http://jimmac.musichall.cz + + + globe + international + web + www + internet + network + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/kindred-create.svg b/icons/themed/kindred-create.svg new file mode 100644 index 0000000000..b88d79fb37 --- /dev/null +++ b/icons/themed/kindred-create.svg @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + diff --git a/icons/themed/list-add.svg b/icons/themed/list-add.svg new file mode 100644 index 0000000000..ff6302a483 --- /dev/null +++ b/icons/themed/list-add.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Arch_Add + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Add.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/list-remove.svg b/icons/themed/list-remove.svg new file mode 100644 index 0000000000..2b853328ab --- /dev/null +++ b/icons/themed/list-remove.svg @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [wmayer] + + + Arch_Remove + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Remove.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/list.svg b/icons/themed/list.svg new file mode 100644 index 0000000000..34175c5bc5 --- /dev/null +++ b/icons/themed/list.svg @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/listBullet.svg b/icons/themed/listBullet.svg new file mode 100644 index 0000000000..b8ccfe16c1 --- /dev/null +++ b/icons/themed/listBullet.svg @@ -0,0 +1,644 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/listNumber.svg b/icons/themed/listNumber.svg new file mode 100644 index 0000000000..c0e6b0ba06 --- /dev/null +++ b/icons/themed/listNumber.svg @@ -0,0 +1,649 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + 1 + 2 + 3 + diff --git a/icons/themed/media-playback-start-back.svg b/icons/themed/media-playback-start-back.svg new file mode 100644 index 0000000000..6b873f3d79 --- /dev/null +++ b/icons/themed/media-playback-start-back.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Lapo Calamandrei + + + + + + play + media + music + video + player + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/media-playback-start.svg b/icons/themed/media-playback-start.svg new file mode 100644 index 0000000000..b84db035eb --- /dev/null +++ b/icons/themed/media-playback-start.svg @@ -0,0 +1,387 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + play + media + music + video + player + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/media-playback-step-back.svg b/icons/themed/media-playback-step-back.svg new file mode 100644 index 0000000000..d8c138a500 --- /dev/null +++ b/icons/themed/media-playback-step-back.svg @@ -0,0 +1,450 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Lapo Calamandrei + + + + + + play + media + music + video + player + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/media-playback-step.svg b/icons/themed/media-playback-step.svg new file mode 100644 index 0000000000..6c61113169 --- /dev/null +++ b/icons/themed/media-playback-step.svg @@ -0,0 +1,432 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Lapo Calamandrei + + + + + + play + media + music + video + player + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/media-playback-stop.svg b/icons/themed/media-playback-stop.svg new file mode 100644 index 0000000000..30abe08e8c --- /dev/null +++ b/icons/themed/media-playback-stop.svg @@ -0,0 +1,650 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Lapo Calamandrei + + + + + + media + stop + playback + video + music + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/media-record.svg b/icons/themed/media-record.svg new file mode 100644 index 0000000000..0f99d945c7 --- /dev/null +++ b/icons/themed/media-record.svg @@ -0,0 +1,588 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/member.svg b/icons/themed/member.svg new file mode 100644 index 0000000000..07c9c13f3f --- /dev/null +++ b/icons/themed/member.svg @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/icons/themed/menu.svg b/icons/themed/menu.svg new file mode 100644 index 0000000000..642664822d --- /dev/null +++ b/icons/themed/menu.svg @@ -0,0 +1,42 @@ + + diff --git a/icons/themed/method.svg b/icons/themed/method.svg new file mode 100644 index 0000000000..8eae197ed8 --- /dev/null +++ b/icons/themed/method.svg @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/mouse-left.svg b/icons/themed/mouse-left.svg new file mode 100644 index 0000000000..c2cf3c63de --- /dev/null +++ b/icons/themed/mouse-left.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/themed/mouse-middle.svg b/icons/themed/mouse-middle.svg new file mode 100644 index 0000000000..da06b69bfd --- /dev/null +++ b/icons/themed/mouse-middle.svg @@ -0,0 +1,43 @@ + + + + + + diff --git a/icons/themed/mouse-move.svg b/icons/themed/mouse-move.svg new file mode 100644 index 0000000000..9ea991339e --- /dev/null +++ b/icons/themed/mouse-move.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/themed/mouse-right.svg b/icons/themed/mouse-right.svg new file mode 100644 index 0000000000..f4507f1570 --- /dev/null +++ b/icons/themed/mouse-right.svg @@ -0,0 +1,4 @@ + + + + diff --git a/icons/themed/mouse-scroll-down.svg b/icons/themed/mouse-scroll-down.svg new file mode 100644 index 0000000000..d59aeafd7b --- /dev/null +++ b/icons/themed/mouse-scroll-down.svg @@ -0,0 +1,43 @@ + + + + + + diff --git a/icons/themed/mouse-scroll-up.svg b/icons/themed/mouse-scroll-up.svg new file mode 100644 index 0000000000..4b60d02658 --- /dev/null +++ b/icons/themed/mouse-scroll-up.svg @@ -0,0 +1,43 @@ + + + + + + diff --git a/icons/themed/mouse-scroll.svg b/icons/themed/mouse-scroll.svg new file mode 100644 index 0000000000..b3256737aa --- /dev/null +++ b/icons/themed/mouse-scroll.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/themed/mouse_pointer.svg b/icons/themed/mouse_pointer.svg new file mode 100644 index 0000000000..7777c8b343 --- /dev/null +++ b/icons/themed/mouse_pointer.svg @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/multiline.svg b/icons/themed/multiline.svg new file mode 100644 index 0000000000..8d338325a5 --- /dev/null +++ b/icons/themed/multiline.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/themed/none.svg b/icons/themed/none.svg new file mode 100644 index 0000000000..a7cece394a --- /dev/null +++ b/icons/themed/none.svg @@ -0,0 +1,54 @@ + + + + + + + + + + + + + image/svg+xml + + + + + + diff --git a/icons/themed/overlay_error.svg b/icons/themed/overlay_error.svg new file mode 100644 index 0000000000..0de7d1ca4a --- /dev/null +++ b/icons/themed/overlay_error.svg @@ -0,0 +1,380 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + diff --git a/icons/themed/overlay_recompute.svg b/icons/themed/overlay_recompute.svg new file mode 100644 index 0000000000..7c35a9fbcf --- /dev/null +++ b/icons/themed/overlay_recompute.svg @@ -0,0 +1,379 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + diff --git a/icons/themed/preferences-addon_manager.svg b/icons/themed/preferences-addon_manager.svg new file mode 100644 index 0000000000..bd9d8d51d3 --- /dev/null +++ b/icons/themed/preferences-addon_manager.svg @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-assembly.svg b/icons/themed/preferences-assembly.svg new file mode 100644 index 0000000000..8945ad538f --- /dev/null +++ b/icons/themed/preferences-assembly.svg @@ -0,0 +1,343 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + Path-Stock + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Path/Gui/Resources/icons/Path-Stock.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-bim.svg b/icons/themed/preferences-bim.svg new file mode 100644 index 0000000000..0329ee6913 --- /dev/null +++ b/icons/themed/preferences-bim.svg @@ -0,0 +1,100 @@ + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [yorikvanhavre] + + + Arch_Wall_Tree + 2011-12-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Wall_Tree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-cam.svg b/icons/themed/preferences-cam.svg new file mode 100644 index 0000000000..10666419c2 --- /dev/null +++ b/icons/themed/preferences-cam.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + preferences-path + 2015-07-04 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/CAM/Gui/Resources/icons/preferences-path.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-display.svg b/icons/themed/preferences-display.svg new file mode 100644 index 0000000000..eeead4fb62 --- /dev/null +++ b/icons/themed/preferences-display.svg @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + diff --git a/icons/themed/preferences-draft.svg b/icons/themed/preferences-draft.svg new file mode 100644 index 0000000000..d59b56c530 --- /dev/null +++ b/icons/themed/preferences-draft.svg @@ -0,0 +1,287 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/preferences-draft.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + + + drafting board + ruler + right angle ruler + + + A right angle ruler resting on a ruler on a drafting board + + + + diff --git a/icons/themed/preferences-fem.svg b/icons/themed/preferences-fem.svg new file mode 100644 index 0000000000..7f5fff33d4 --- /dev/null +++ b/icons/themed/preferences-fem.svg @@ -0,0 +1,704 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Sketcher/Gui/Resources/icons/Sketcher_CreateArc.svg + + + FreeCAD LGPL2+ + + + 2023-12-19 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-general.svg b/icons/themed/preferences-general.svg new file mode 100644 index 0000000000..0e10163158 --- /dev/null +++ b/icons/themed/preferences-general.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + diff --git a/icons/themed/preferences-import-export.svg b/icons/themed/preferences-import-export.svg new file mode 100644 index 0000000000..c3723eb3c2 --- /dev/null +++ b/icons/themed/preferences-import-export.svg @@ -0,0 +1,222 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-material.svg b/icons/themed/preferences-material.svg new file mode 100644 index 0000000000..b4012193f0 --- /dev/null +++ b/icons/themed/preferences-material.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Yorik van Havre] + + + Arch_Material + 2015-04-15 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Arch/Resources/icons/Arch_Material.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/preferences-measure.svg b/icons/themed/preferences-measure.svg new file mode 100644 index 0000000000..58f693d25a --- /dev/null +++ b/icons/themed/preferences-measure.svg @@ -0,0 +1,301 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-openscad.svg b/icons/themed/preferences-openscad.svg new file mode 100644 index 0000000000..15bac84a28 --- /dev/null +++ b/icons/themed/preferences-openscad.svg @@ -0,0 +1,159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + preferences-openscad + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/preferences-openscad.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-part_design.svg b/icons/themed/preferences-part_design.svg new file mode 100644 index 0000000000..8020c3e86a --- /dev/null +++ b/icons/themed/preferences-part_design.svg @@ -0,0 +1,656 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Jakub Steiner + + + + + video + display + monitor + LCD + CRT + + + + http://jimmac.musichall.cz/ + 2011-10-10 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Part/Gui/Resources/icons/preferences-part_design.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-python.svg b/icons/themed/preferences-python.svg new file mode 100644 index 0000000000..28636ed72c --- /dev/null +++ b/icons/themed/preferences-python.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-spreadsheet.svg b/icons/themed/preferences-spreadsheet.svg new file mode 100644 index 0000000000..fe31d336b9 --- /dev/null +++ b/icons/themed/preferences-spreadsheet.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + [Eivind Kvedalen] + + + 2013-09-29 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Spreadsheet/Gui/Resources/icons/Spreadsheet.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-start.svg b/icons/themed/preferences-start.svg new file mode 100644 index 0000000000..51106b5a1a --- /dev/null +++ b/icons/themed/preferences-start.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [triplus] + + + StartWorkbench + 2016-02-26 + http://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Start/Gui/Resources/icons/StartWorkbench.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + right + + + Arrow pointing towards the right + + + + + + + + diff --git a/icons/themed/preferences-system.svg b/icons/themed/preferences-system.svg new file mode 100644 index 0000000000..0e10163158 --- /dev/null +++ b/icons/themed/preferences-system.svg @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + diff --git a/icons/themed/preferences-techdraw.svg b/icons/themed/preferences-techdraw.svg new file mode 100644 index 0000000000..4f72558298 --- /dev/null +++ b/icons/themed/preferences-techdraw.svg @@ -0,0 +1,190 @@ + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preferences-workbenches.svg b/icons/themed/preferences-workbenches.svg new file mode 100644 index 0000000000..9ae0b5cc1c --- /dev/null +++ b/icons/themed/preferences-workbenches.svg @@ -0,0 +1,215 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/preview-rendered.svg b/icons/themed/preview-rendered.svg new file mode 100644 index 0000000000..7dfee0e7fd --- /dev/null +++ b/icons/themed/preview-rendered.svg @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + $committer + + + preview-rendered + 2013-11-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Material/Resources/icons/preview-rendered.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + diff --git a/icons/themed/preview-vector.svg b/icons/themed/preview-vector.svg new file mode 100644 index 0000000000..8e043f6254 --- /dev/null +++ b/icons/themed/preview-vector.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + $committer + + + preview-vector + 2013-11-19 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/Material/Resources/icons/preview-vector.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + diff --git a/icons/themed/process-stop.svg b/icons/themed/process-stop.svg new file mode 100644 index 0000000000..a7c78d9861 --- /dev/null +++ b/icons/themed/process-stop.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + 2005-10-16 + + + Andreas Nilsson + + + + + stop + halt + error + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/property.svg b/icons/themed/property.svg new file mode 100644 index 0000000000..d2be04ce27 --- /dev/null +++ b/icons/themed/property.svg @@ -0,0 +1,301 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/px.svg b/icons/themed/px.svg new file mode 100644 index 0000000000..1a4c8f4b54 --- /dev/null +++ b/icons/themed/px.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/rectangle.svg b/icons/themed/rectangle.svg new file mode 100644 index 0000000000..e354f5bece --- /dev/null +++ b/icons/themed/rectangle.svg @@ -0,0 +1,34 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/icons/themed/regex_bad.svg b/icons/themed/regex_bad.svg new file mode 100644 index 0000000000..61900912bb --- /dev/null +++ b/icons/themed/regex_bad.svg @@ -0,0 +1,151 @@ + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/icons/themed/regex_ok.svg b/icons/themed/regex_ok.svg new file mode 100644 index 0000000000..e1fa457b6a --- /dev/null +++ b/icons/themed/regex_ok.svg @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/safe-mode-restart.svg b/icons/themed/safe-mode-restart.svg new file mode 100644 index 0000000000..77ddeab701 --- /dev/null +++ b/icons/themed/safe-mode-restart.svg @@ -0,0 +1,200 @@ + + + + + Safe Mode Icon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + + + Gabriel A. Zorril + + + September 26, 2024 + Safe Mode Icon + + + + + + + + + + + diff --git a/icons/themed/section-down.svg b/icons/themed/section-down.svg new file mode 100644 index 0000000000..9c76dc2044 --- /dev/null +++ b/icons/themed/section-down.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-10-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/section-right.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/section-left.svg b/icons/themed/section-left.svg new file mode 100644 index 0000000000..22464731ac --- /dev/null +++ b/icons/themed/section-left.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-10-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/section-right.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/section-right.svg b/icons/themed/section-right.svg new file mode 100644 index 0000000000..51ab4c590e --- /dev/null +++ b/icons/themed/section-right.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-10-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/section-right.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/section-up.svg b/icons/themed/section-up.svg new file mode 100644 index 0000000000..c71fc61107 --- /dev/null +++ b/icons/themed/section-up.svg @@ -0,0 +1,242 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [WandererFan] + + + 2016-10-06 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/section-right.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + diff --git a/icons/themed/sel-back.svg b/icons/themed/sel-back.svg new file mode 100644 index 0000000000..851b6a3425 --- /dev/null +++ b/icons/themed/sel-back.svg @@ -0,0 +1,318 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + diff --git a/icons/themed/sel-bbox.svg b/icons/themed/sel-bbox.svg new file mode 100644 index 0000000000..cf551a1512 --- /dev/null +++ b/icons/themed/sel-bbox.svg @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/sel-forward.svg b/icons/themed/sel-forward.svg new file mode 100644 index 0000000000..2fc176f0b2 --- /dev/null +++ b/icons/themed/sel-forward.svg @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [WandererFan] + + + arrow-left + 2016-11-24 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/arrow-left.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + arrow + left + + + Arrow pointing left + + + + + + + + + + diff --git a/icons/themed/sel-instance.svg b/icons/themed/sel-instance.svg new file mode 100644 index 0000000000..da64660b4d --- /dev/null +++ b/icons/themed/sel-instance.svg @@ -0,0 +1,627 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/silo-bom.svg b/icons/themed/silo-bom.svg new file mode 100644 index 0000000000..1ea69dccfd --- /dev/null +++ b/icons/themed/silo-bom.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/icons/themed/silo-commit.svg b/icons/themed/silo-commit.svg new file mode 100644 index 0000000000..f49b77c2a1 --- /dev/null +++ b/icons/themed/silo-commit.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/themed/silo-info.svg b/icons/themed/silo-info.svg new file mode 100644 index 0000000000..2a48196fdc --- /dev/null +++ b/icons/themed/silo-info.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/themed/silo-pull.svg b/icons/themed/silo-pull.svg new file mode 100644 index 0000000000..8c25cec5f8 --- /dev/null +++ b/icons/themed/silo-pull.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/themed/silo-push.svg b/icons/themed/silo-push.svg new file mode 100644 index 0000000000..585fdd779e --- /dev/null +++ b/icons/themed/silo-push.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/themed/sort_ascending.svg b/icons/themed/sort_ascending.svg new file mode 100644 index 0000000000..1999006411 --- /dev/null +++ b/icons/themed/sort_ascending.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + diff --git a/icons/themed/sort_descending.svg b/icons/themed/sort_descending.svg new file mode 100644 index 0000000000..bd3c437620 --- /dev/null +++ b/icons/themed/sort_descending.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + diff --git a/icons/themed/spaceball_button.svg b/icons/themed/spaceball_button.svg new file mode 100644 index 0000000000..c037c3ffd2 --- /dev/null +++ b/icons/themed/spaceball_button.svg @@ -0,0 +1,245 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + diff --git a/icons/themed/spinner.svg b/icons/themed/spinner.svg new file mode 100644 index 0000000000..bdb829f512 --- /dev/null +++ b/icons/themed/spinner.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + diff --git a/icons/themed/square.svg b/icons/themed/square.svg new file mode 100644 index 0000000000..21f21afe25 --- /dev/null +++ b/icons/themed/square.svg @@ -0,0 +1,34 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/icons/themed/table.svg b/icons/themed/table.svg new file mode 100644 index 0000000000..924f9e4381 --- /dev/null +++ b/icons/themed/table.svg @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/textBold.svg b/icons/themed/textBold.svg new file mode 100644 index 0000000000..376f510736 --- /dev/null +++ b/icons/themed/textBold.svg @@ -0,0 +1,618 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + a + diff --git a/icons/themed/textItalic.svg b/icons/themed/textItalic.svg new file mode 100644 index 0000000000..87ddb41914 --- /dev/null +++ b/icons/themed/textItalic.svg @@ -0,0 +1,618 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + a + diff --git a/icons/themed/textStrike.svg b/icons/themed/textStrike.svg new file mode 100644 index 0000000000..c2d4cd85ff --- /dev/null +++ b/icons/themed/textStrike.svg @@ -0,0 +1,625 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + a + + diff --git a/icons/themed/textUnderline.svg b/icons/themed/textUnderline.svg new file mode 100644 index 0000000000..3193a96c98 --- /dev/null +++ b/icons/themed/textUnderline.svg @@ -0,0 +1,625 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [agryson] Alexander Gryson + + + http://agryson.net + + TechDraw_View + 2016-01-14 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/TechDraw/Gui/Resources/icons/actions/TechDraw_View.svg + + + FreeCAD LGPL2+ + + + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + a + + diff --git a/icons/themed/tree-doc-collapse.svg b/icons/themed/tree-doc-collapse.svg new file mode 100644 index 0000000000..a0b028e531 --- /dev/null +++ b/icons/themed/tree-doc-collapse.svg @@ -0,0 +1,804 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-doc-multi.svg b/icons/themed/tree-doc-multi.svg new file mode 100644 index 0000000000..7b2e1aaaed --- /dev/null +++ b/icons/themed/tree-doc-multi.svg @@ -0,0 +1,872 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-doc-single.svg b/icons/themed/tree-doc-single.svg new file mode 100644 index 0000000000..acb41c18f1 --- /dev/null +++ b/icons/themed/tree-doc-single.svg @@ -0,0 +1,765 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-goto-sel.svg b/icons/themed/tree-goto-sel.svg new file mode 100644 index 0000000000..440905d78b --- /dev/null +++ b/icons/themed/tree-goto-sel.svg @@ -0,0 +1,677 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-item-drag.svg b/icons/themed/tree-item-drag.svg new file mode 100644 index 0000000000..72155ca643 --- /dev/null +++ b/icons/themed/tree-item-drag.svg @@ -0,0 +1,647 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-pre-sel.svg b/icons/themed/tree-pre-sel.svg new file mode 100644 index 0000000000..5bac4f7e5a --- /dev/null +++ b/icons/themed/tree-pre-sel.svg @@ -0,0 +1,772 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-rec-sel.svg b/icons/themed/tree-rec-sel.svg new file mode 100644 index 0000000000..6d051d2e44 --- /dev/null +++ b/icons/themed/tree-rec-sel.svg @@ -0,0 +1,618 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-sync-pla.svg b/icons/themed/tree-sync-pla.svg new file mode 100644 index 0000000000..501fd8bdb4 --- /dev/null +++ b/icons/themed/tree-sync-pla.svg @@ -0,0 +1,802 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-sync-sel.svg b/icons/themed/tree-sync-sel.svg new file mode 100644 index 0000000000..0d4905c3d1 --- /dev/null +++ b/icons/themed/tree-sync-sel.svg @@ -0,0 +1,712 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + [Sebastian Hoogen] + + + OpenSCAD_RemoveSubtree + 2012-05-03 + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/Mod/OpenSCAD/Resources/icons/OpenSCAD_RemoveSubtree.svg + + + FreeCAD LGPL2+ + + + https://www.gnu.org/copyleft/lesser.html + + + [agryson] Alexander Gryson + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/tree-sync-view.svg b/icons/themed/tree-sync-view.svg new file mode 100644 index 0000000000..689800ade1 --- /dev/null +++ b/icons/themed/tree-sync-view.svg @@ -0,0 +1,643 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/triangle.svg b/icons/themed/triangle.svg new file mode 100644 index 0000000000..68a171dbbd --- /dev/null +++ b/icons/themed/triangle.svg @@ -0,0 +1,31 @@ + + + + + + + + + image/svg+xml + + + + + + diff --git a/icons/themed/type_class.svg b/icons/themed/type_class.svg new file mode 100644 index 0000000000..e49b856ab8 --- /dev/null +++ b/icons/themed/type_class.svg @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/type_enum.svg b/icons/themed/type_enum.svg new file mode 100644 index 0000000000..6681198efb --- /dev/null +++ b/icons/themed/type_enum.svg @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/type_module.svg b/icons/themed/type_module.svg new file mode 100644 index 0000000000..b4bc81ffa0 --- /dev/null +++ b/icons/themed/type_module.svg @@ -0,0 +1,336 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/umf-measurement.svg b/icons/themed/umf-measurement.svg new file mode 100644 index 0000000000..58f693d25a --- /dev/null +++ b/icons/themed/umf-measurement.svg @@ -0,0 +1,301 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/user.svg b/icons/themed/user.svg new file mode 100644 index 0000000000..8dbd79e2e0 --- /dev/null +++ b/icons/themed/user.svg @@ -0,0 +1,698 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + diff --git a/icons/themed/utilities-terminal.svg b/icons/themed/utilities-terminal.svg new file mode 100644 index 0000000000..907a129b9c --- /dev/null +++ b/icons/themed/utilities-terminal.svg @@ -0,0 +1,531 @@ + + + + + Terminal + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Terminal + 2005-10-15 + + + Andreas Nilsson + + + + + terminal + emulator + term + command line + + + + + + Jakub Steiner + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/vertex-selection.svg b/icons/themed/vertex-selection.svg new file mode 100644 index 0000000000..070baf05fe --- /dev/null +++ b/icons/themed/vertex-selection.svg @@ -0,0 +1,223 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-axonometric.svg b/icons/themed/view-axonometric.svg new file mode 100644 index 0000000000..7bdf6daebc --- /dev/null +++ b/icons/themed/view-axonometric.svg @@ -0,0 +1,212 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-bottom.svg b/icons/themed/view-bottom.svg new file mode 100644 index 0000000000..128f2970fe --- /dev/null +++ b/icons/themed/view-bottom.svg @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-front.svg b/icons/themed/view-front.svg new file mode 100644 index 0000000000..99d1fdde84 --- /dev/null +++ b/icons/themed/view-front.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-fullscreen.svg b/icons/themed/view-fullscreen.svg new file mode 100644 index 0000000000..ac54f06897 --- /dev/null +++ b/icons/themed/view-fullscreen.svg @@ -0,0 +1,681 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Jakub Steiner + + + http://jimmac.musichall.cz + + View Fullscreen + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-isometric.svg b/icons/themed/view-isometric.svg new file mode 100644 index 0000000000..05fa832bb9 --- /dev/null +++ b/icons/themed/view-isometric.svg @@ -0,0 +1,208 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-left.svg b/icons/themed/view-left.svg new file mode 100644 index 0000000000..3bfcb96161 --- /dev/null +++ b/icons/themed/view-left.svg @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-measurement-cross.svg b/icons/themed/view-measurement-cross.svg new file mode 100644 index 0000000000..68d89cfd78 --- /dev/null +++ b/icons/themed/view-measurement-cross.svg @@ -0,0 +1,552 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-measurement.svg b/icons/themed/view-measurement.svg new file mode 100644 index 0000000000..3434aca91f --- /dev/null +++ b/icons/themed/view-measurement.svg @@ -0,0 +1,538 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-perspective.svg b/icons/themed/view-perspective.svg new file mode 100644 index 0000000000..804f559f9a --- /dev/null +++ b/icons/themed/view-perspective.svg @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-rear.svg b/icons/themed/view-rear.svg new file mode 100644 index 0000000000..9616f7ee3c --- /dev/null +++ b/icons/themed/view-rear.svg @@ -0,0 +1,231 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-refresh.svg b/icons/themed/view-refresh.svg new file mode 100644 index 0000000000..b217f09e8f --- /dev/null +++ b/icons/themed/view-refresh.svg @@ -0,0 +1,86 @@ + + + +image/svg+xml[maxwxyz]https://www.freecad.org/wiki/index.php?title=ArtworkFreeCADFreeCAD/src/FreeCAD LGPL2+2024 diff --git a/icons/themed/view-right.svg b/icons/themed/view-right.svg new file mode 100644 index 0000000000..2a96328935 --- /dev/null +++ b/icons/themed/view-right.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-rotate-left.svg b/icons/themed/view-rotate-left.svg new file mode 100644 index 0000000000..b8689f9a68 --- /dev/null +++ b/icons/themed/view-rotate-left.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Rotate.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + An arrow in a circular shape with the head curving towards the tail + + + arrow + curved + refresh + rotate + + + arrow-ccw + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/view-rotate-right.svg b/icons/themed/view-rotate-right.svg new file mode 100644 index 0000000000..b9fa69cad4 --- /dev/null +++ b/icons/themed/view-rotate-right.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Mon Oct 10 13:44:52 2011 +0000 + + + [wmayer] + + + + + FreeCAD LGPL2+ + + + + + FreeCAD + + + FreeCAD/src/Mod/Draft/Resources/icons/Draft_Rotate.svg + https://www.freecad.org/wiki/index.php?title=Artwork + + + [agryson] Alexander Gryson + + + An arrow in a circular shape with the head curving towards the tail + + + arrow + curved + refresh + rotate + + + arrow-cw + https://www.gnu.org/copyleft/lesser.html + + + + diff --git a/icons/themed/view-select.svg b/icons/themed/view-select.svg new file mode 100644 index 0000000000..d19a73d34a --- /dev/null +++ b/icons/themed/view-select.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/view-top.svg b/icons/themed/view-top.svg new file mode 100644 index 0000000000..400fde50ff --- /dev/null +++ b/icons/themed/view-top.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/view-unselectable.svg b/icons/themed/view-unselectable.svg new file mode 100644 index 0000000000..7cc3dd412b --- /dev/null +++ b/icons/themed/view-unselectable.svg @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + diff --git a/icons/themed/warning.svg b/icons/themed/warning.svg new file mode 100644 index 0000000000..2fe0537adf --- /dev/null +++ b/icons/themed/warning.svg @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/icons/themed/window-new.svg b/icons/themed/window-new.svg new file mode 100644 index 0000000000..ed51b86614 --- /dev/null +++ b/icons/themed/window-new.svg @@ -0,0 +1,239 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + [maxwxyz] + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + FreeCAD + + + FreeCAD/src/ + + + FreeCAD LGPL2+ + + + 2024 + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-all.svg b/icons/themed/zoom-all.svg new file mode 100644 index 0000000000..638c53ab5b --- /dev/null +++ b/icons/themed/zoom-all.svg @@ -0,0 +1,162 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov (http://commons.wikimedia.org/wiki/Tango_icon) + + + + + FreeCAD + + + + + FreeCAD LGPL2+ + + + https://www.freecad.org/wiki/index.php?title=Artwork + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-border-cross.svg b/icons/themed/zoom-border-cross.svg new file mode 100644 index 0000000000..9a3da9c3a6 --- /dev/null +++ b/icons/themed/zoom-border-cross.svg @@ -0,0 +1,565 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-border.svg b/icons/themed/zoom-border.svg new file mode 100644 index 0000000000..02cef5c251 --- /dev/null +++ b/icons/themed/zoom-border.svg @@ -0,0 +1,636 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-fit-best.svg b/icons/themed/zoom-fit-best.svg new file mode 100644 index 0000000000..783e3e7a77 --- /dev/null +++ b/icons/themed/zoom-fit-best.svg @@ -0,0 +1,1010 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-in.svg b/icons/themed/zoom-in.svg new file mode 100644 index 0000000000..053a651cfd --- /dev/null +++ b/icons/themed/zoom-in.svg @@ -0,0 +1,875 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-out.svg b/icons/themed/zoom-out.svg new file mode 100644 index 0000000000..1c737d7352 --- /dev/null +++ b/icons/themed/zoom-out.svg @@ -0,0 +1,855 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + diff --git a/icons/themed/zoom-selection.svg b/icons/themed/zoom-selection.svg new file mode 100644 index 0000000000..ca319d42ab --- /dev/null +++ b/icons/themed/zoom-selection.svg @@ -0,0 +1,753 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + Martin Ruskov + + + http://commons.wikimedia.org/wiki/Tango_icon + + + + + + + + + + + + + + + + + + + + + diff --git a/kindred-icons/AddonManager.svg b/kindred-icons/AddonManager.svg deleted file mode 100644 index 5b96f16545..0000000000 --- a/kindred-icons/AddonManager.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Arch_3Views.svg b/kindred-icons/Arch_3Views.svg deleted file mode 100644 index 3014960422..0000000000 --- a/kindred-icons/Arch_3Views.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 3V - diff --git a/kindred-icons/Arch_Add.svg b/kindred-icons/Arch_Add.svg deleted file mode 100644 index 8f1b1dd915..0000000000 --- a/kindred-icons/Arch_Add.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Add - diff --git a/kindred-icons/Arch_Axis.svg b/kindred-icons/Arch_Axis.svg deleted file mode 100644 index 834eee7325..0000000000 --- a/kindred-icons/Arch_Axis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Axis - diff --git a/kindred-icons/Arch_Axis_System.svg b/kindred-icons/Arch_Axis_System.svg deleted file mode 100644 index bfdf1e0c40..0000000000 --- a/kindred-icons/Arch_Axis_System.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AS - diff --git a/kindred-icons/Arch_Axis_System_Tree.svg b/kindred-icons/Arch_Axis_System_Tree.svg deleted file mode 100644 index 4ddd50cf9e..0000000000 --- a/kindred-icons/Arch_Axis_System_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AST - diff --git a/kindred-icons/Arch_Axis_Tree.svg b/kindred-icons/Arch_Axis_Tree.svg deleted file mode 100644 index c554606d99..0000000000 --- a/kindred-icons/Arch_Axis_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AT - diff --git a/kindred-icons/Arch_Bimserver.svg b/kindred-icons/Arch_Bimserver.svg deleted file mode 100644 index 42eb912d91..0000000000 --- a/kindred-icons/Arch_Bimserver.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Bims - diff --git a/kindred-icons/Arch_Building.svg b/kindred-icons/Arch_Building.svg deleted file mode 100644 index 3a8a365ab2..0000000000 --- a/kindred-icons/Arch_Building.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Buil - diff --git a/kindred-icons/Arch_BuildingPart.svg b/kindred-icons/Arch_BuildingPart.svg deleted file mode 100644 index b04ba1be2e..0000000000 --- a/kindred-icons/Arch_BuildingPart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BP - diff --git a/kindred-icons/Arch_BuildingPart_Tree.svg b/kindred-icons/Arch_BuildingPart_Tree.svg deleted file mode 100644 index 7bfbf92bac..0000000000 --- a/kindred-icons/Arch_BuildingPart_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BPT - diff --git a/kindred-icons/Arch_Building_Tree.svg b/kindred-icons/Arch_Building_Tree.svg deleted file mode 100644 index ab1a81368c..0000000000 --- a/kindred-icons/Arch_Building_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BT - diff --git a/kindred-icons/Arch_Cell.svg b/kindred-icons/Arch_Cell.svg deleted file mode 100644 index 0c8006e636..0000000000 --- a/kindred-icons/Arch_Cell.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cell - diff --git a/kindred-icons/Arch_Cell_Tree.svg b/kindred-icons/Arch_Cell_Tree.svg deleted file mode 100644 index 1cec64a3d1..0000000000 --- a/kindred-icons/Arch_Cell_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/Arch_Check.svg b/kindred-icons/Arch_Check.svg deleted file mode 100644 index 2ebace9adc..0000000000 --- a/kindred-icons/Arch_Check.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Chec - diff --git a/kindred-icons/Arch_CloseHoles.svg b/kindred-icons/Arch_CloseHoles.svg deleted file mode 100644 index a8ed9d84f3..0000000000 --- a/kindred-icons/Arch_CloseHoles.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CH - diff --git a/kindred-icons/Arch_Component.svg b/kindred-icons/Arch_Component.svg deleted file mode 100644 index 11fdd00687..0000000000 --- a/kindred-icons/Arch_Component.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Comp - diff --git a/kindred-icons/Arch_Component_Clone.svg b/kindred-icons/Arch_Component_Clone.svg deleted file mode 100644 index 460bb773d6..0000000000 --- a/kindred-icons/Arch_Component_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/Arch_Component_Tree.svg b/kindred-icons/Arch_Component_Tree.svg deleted file mode 100644 index 1cec64a3d1..0000000000 --- a/kindred-icons/Arch_Component_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/Arch_CurtainWall.svg b/kindred-icons/Arch_CurtainWall.svg deleted file mode 100644 index c9bf58e630..0000000000 --- a/kindred-icons/Arch_CurtainWall.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CW - diff --git a/kindred-icons/Arch_CurtainWall_Tree.svg b/kindred-icons/Arch_CurtainWall_Tree.svg deleted file mode 100644 index 5b8981551f..0000000000 --- a/kindred-icons/Arch_CurtainWall_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CWT - diff --git a/kindred-icons/Arch_CutPlane.svg b/kindred-icons/Arch_CutPlane.svg deleted file mode 100644 index 4287aa10e1..0000000000 --- a/kindred-icons/Arch_CutPlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/Arch_Equipment.svg b/kindred-icons/Arch_Equipment.svg deleted file mode 100644 index b95c51b303..0000000000 --- a/kindred-icons/Arch_Equipment.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Equi - diff --git a/kindred-icons/Arch_Equipment_Clone.svg b/kindred-icons/Arch_Equipment_Clone.svg deleted file mode 100644 index b3264158fc..0000000000 --- a/kindred-icons/Arch_Equipment_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EC - diff --git a/kindred-icons/Arch_Equipment_Tree.svg b/kindred-icons/Arch_Equipment_Tree.svg deleted file mode 100644 index a829497245..0000000000 --- a/kindred-icons/Arch_Equipment_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ET - diff --git a/kindred-icons/Arch_Fence.svg b/kindred-icons/Arch_Fence.svg deleted file mode 100644 index f695b0c4e0..0000000000 --- a/kindred-icons/Arch_Fence.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fenc - diff --git a/kindred-icons/Arch_Fence_Tree.svg b/kindred-icons/Arch_Fence_Tree.svg deleted file mode 100644 index b0270d44c7..0000000000 --- a/kindred-icons/Arch_Fence_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FT - diff --git a/kindred-icons/Arch_Fixture.svg b/kindred-icons/Arch_Fixture.svg deleted file mode 100644 index d7842c5813..0000000000 --- a/kindred-icons/Arch_Fixture.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fixt - diff --git a/kindred-icons/Arch_Floor.svg b/kindred-icons/Arch_Floor.svg deleted file mode 100644 index 89cb4f1522..0000000000 --- a/kindred-icons/Arch_Floor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Floo - diff --git a/kindred-icons/Arch_Floor_Tree.svg b/kindred-icons/Arch_Floor_Tree.svg deleted file mode 100644 index b0270d44c7..0000000000 --- a/kindred-icons/Arch_Floor_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FT - diff --git a/kindred-icons/Arch_Frame.svg b/kindred-icons/Arch_Frame.svg deleted file mode 100644 index 338461d2f6..0000000000 --- a/kindred-icons/Arch_Frame.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fram - diff --git a/kindred-icons/Arch_Frame_Tree.svg b/kindred-icons/Arch_Frame_Tree.svg deleted file mode 100644 index b0270d44c7..0000000000 --- a/kindred-icons/Arch_Frame_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FT - diff --git a/kindred-icons/Arch_Grid.svg b/kindred-icons/Arch_Grid.svg deleted file mode 100644 index ed17f89c8f..0000000000 --- a/kindred-icons/Arch_Grid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Grid - diff --git a/kindred-icons/Arch_Material.svg b/kindred-icons/Arch_Material.svg deleted file mode 100644 index 8c7ffb9f57..0000000000 --- a/kindred-icons/Arch_Material.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mate - diff --git a/kindred-icons/Arch_Material_Group.svg b/kindred-icons/Arch_Material_Group.svg deleted file mode 100644 index ecec447196..0000000000 --- a/kindred-icons/Arch_Material_Group.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MG - diff --git a/kindred-icons/Arch_Material_Multi.svg b/kindred-icons/Arch_Material_Multi.svg deleted file mode 100644 index 31a52f5267..0000000000 --- a/kindred-icons/Arch_Material_Multi.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MM - diff --git a/kindred-icons/Arch_MergeWalls.svg b/kindred-icons/Arch_MergeWalls.svg deleted file mode 100644 index 0ef49de077..0000000000 --- a/kindred-icons/Arch_MergeWalls.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MW - diff --git a/kindred-icons/Arch_MeshToShape.svg b/kindred-icons/Arch_MeshToShape.svg deleted file mode 100644 index c94eb5f489..0000000000 --- a/kindred-icons/Arch_MeshToShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MTS - diff --git a/kindred-icons/Arch_MultipleStructures.svg b/kindred-icons/Arch_MultipleStructures.svg deleted file mode 100644 index 83235f663d..0000000000 --- a/kindred-icons/Arch_MultipleStructures.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/Arch_Nest.svg b/kindred-icons/Arch_Nest.svg deleted file mode 100644 index 796bfdf1d9..0000000000 --- a/kindred-icons/Arch_Nest.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Nest - diff --git a/kindred-icons/Arch_Panel.svg b/kindred-icons/Arch_Panel.svg deleted file mode 100644 index 9b2acf4da7..0000000000 --- a/kindred-icons/Arch_Panel.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Pane - diff --git a/kindred-icons/Arch_Panel_Clone.svg b/kindred-icons/Arch_Panel_Clone.svg deleted file mode 100644 index 307adc3801..0000000000 --- a/kindred-icons/Arch_Panel_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC - diff --git a/kindred-icons/Arch_Panel_Cut.svg b/kindred-icons/Arch_Panel_Cut.svg deleted file mode 100644 index 307adc3801..0000000000 --- a/kindred-icons/Arch_Panel_Cut.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC - diff --git a/kindred-icons/Arch_Panel_Sheet.svg b/kindred-icons/Arch_Panel_Sheet.svg deleted file mode 100644 index 34da758b36..0000000000 --- a/kindred-icons/Arch_Panel_Sheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PS - diff --git a/kindred-icons/Arch_Panel_Sheet_Tree.svg b/kindred-icons/Arch_Panel_Sheet_Tree.svg deleted file mode 100644 index 5d149d9df0..0000000000 --- a/kindred-icons/Arch_Panel_Sheet_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PST - diff --git a/kindred-icons/Arch_Panel_Tree.svg b/kindred-icons/Arch_Panel_Tree.svg deleted file mode 100644 index 06f8f0de6e..0000000000 --- a/kindred-icons/Arch_Panel_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Arch_Pipe.svg b/kindred-icons/Arch_Pipe.svg deleted file mode 100644 index cef4101cc8..0000000000 --- a/kindred-icons/Arch_Pipe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Pipe - diff --git a/kindred-icons/Arch_PipeConnector.svg b/kindred-icons/Arch_PipeConnector.svg deleted file mode 100644 index 307adc3801..0000000000 --- a/kindred-icons/Arch_PipeConnector.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC - diff --git a/kindred-icons/Arch_Pipe_Tree.svg b/kindred-icons/Arch_Pipe_Tree.svg deleted file mode 100644 index 06f8f0de6e..0000000000 --- a/kindred-icons/Arch_Pipe_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Arch_Profile.svg b/kindred-icons/Arch_Profile.svg deleted file mode 100644 index 4b3518dc81..0000000000 --- a/kindred-icons/Arch_Profile.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Prof - diff --git a/kindred-icons/Arch_Project.svg b/kindred-icons/Arch_Project.svg deleted file mode 100644 index 2b2821eb71..0000000000 --- a/kindred-icons/Arch_Project.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Proj - diff --git a/kindred-icons/Arch_Project_Tree.svg b/kindred-icons/Arch_Project_Tree.svg deleted file mode 100644 index 06f8f0de6e..0000000000 --- a/kindred-icons/Arch_Project_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Arch_Rebar.svg b/kindred-icons/Arch_Rebar.svg deleted file mode 100644 index c3558e68b7..0000000000 --- a/kindred-icons/Arch_Rebar.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Reba - diff --git a/kindred-icons/Arch_Rebar_Tree.svg b/kindred-icons/Arch_Rebar_Tree.svg deleted file mode 100644 index 6ee8e1b36b..0000000000 --- a/kindred-icons/Arch_Rebar_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RT - diff --git a/kindred-icons/Arch_Reference.svg b/kindred-icons/Arch_Reference.svg deleted file mode 100644 index 812a0e437a..0000000000 --- a/kindred-icons/Arch_Reference.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Refe - diff --git a/kindred-icons/Arch_Remove.svg b/kindred-icons/Arch_Remove.svg deleted file mode 100644 index cb992d5f04..0000000000 --- a/kindred-icons/Arch_Remove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Remo - diff --git a/kindred-icons/Arch_RemoveShape.svg b/kindred-icons/Arch_RemoveShape.svg deleted file mode 100644 index 38c40a1860..0000000000 --- a/kindred-icons/Arch_RemoveShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/Arch_Roof.svg b/kindred-icons/Arch_Roof.svg deleted file mode 100644 index 50c85f8415..0000000000 --- a/kindred-icons/Arch_Roof.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Roof - diff --git a/kindred-icons/Arch_Roof_Tree.svg b/kindred-icons/Arch_Roof_Tree.svg deleted file mode 100644 index 6ee8e1b36b..0000000000 --- a/kindred-icons/Arch_Roof_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RT - diff --git a/kindred-icons/Arch_Schedule.svg b/kindred-icons/Arch_Schedule.svg deleted file mode 100644 index 71e2ac3df8..0000000000 --- a/kindred-icons/Arch_Schedule.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sche - diff --git a/kindred-icons/Arch_SectionPlane.svg b/kindred-icons/Arch_SectionPlane.svg deleted file mode 100644 index 373113dd2a..0000000000 --- a/kindred-icons/Arch_SectionPlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Arch_SectionPlane_Tree.svg b/kindred-icons/Arch_SectionPlane_Tree.svg deleted file mode 100644 index b15e73aa57..0000000000 --- a/kindred-icons/Arch_SectionPlane_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SPT - diff --git a/kindred-icons/Arch_SelectNonManifold.svg b/kindred-icons/Arch_SelectNonManifold.svg deleted file mode 100644 index c96ea4eea7..0000000000 --- a/kindred-icons/Arch_SelectNonManifold.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SNM - diff --git a/kindred-icons/Arch_Site.svg b/kindred-icons/Arch_Site.svg deleted file mode 100644 index 6bea1d9858..0000000000 --- a/kindred-icons/Arch_Site.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Site - diff --git a/kindred-icons/Arch_Site_Tree.svg b/kindred-icons/Arch_Site_Tree.svg deleted file mode 100644 index 300e38c299..0000000000 --- a/kindred-icons/Arch_Site_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ST - diff --git a/kindred-icons/Arch_Space.svg b/kindred-icons/Arch_Space.svg deleted file mode 100644 index f949fdc011..0000000000 --- a/kindred-icons/Arch_Space.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Spac - diff --git a/kindred-icons/Arch_Space_Clone.svg b/kindred-icons/Arch_Space_Clone.svg deleted file mode 100644 index 434290d61a..0000000000 --- a/kindred-icons/Arch_Space_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/Arch_Space_Tree.svg b/kindred-icons/Arch_Space_Tree.svg deleted file mode 100644 index 300e38c299..0000000000 --- a/kindred-icons/Arch_Space_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ST - diff --git a/kindred-icons/Arch_SplitMesh.svg b/kindred-icons/Arch_SplitMesh.svg deleted file mode 100644 index 52cf9e76c3..0000000000 --- a/kindred-icons/Arch_SplitMesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SM - diff --git a/kindred-icons/Arch_Stairs.svg b/kindred-icons/Arch_Stairs.svg deleted file mode 100644 index 8ce26fe177..0000000000 --- a/kindred-icons/Arch_Stairs.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Stai - diff --git a/kindred-icons/Arch_Stairs_Tree.svg b/kindred-icons/Arch_Stairs_Tree.svg deleted file mode 100644 index 300e38c299..0000000000 --- a/kindred-icons/Arch_Stairs_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ST - diff --git a/kindred-icons/Arch_StructuralSystem.svg b/kindred-icons/Arch_StructuralSystem.svg deleted file mode 100644 index 488cdedf17..0000000000 --- a/kindred-icons/Arch_StructuralSystem.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SS - diff --git a/kindred-icons/Arch_StructuralSystem_Tree.svg b/kindred-icons/Arch_StructuralSystem_Tree.svg deleted file mode 100644 index c2d697e208..0000000000 --- a/kindred-icons/Arch_StructuralSystem_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SST - diff --git a/kindred-icons/Arch_Structure.svg b/kindred-icons/Arch_Structure.svg deleted file mode 100644 index 6047795b4b..0000000000 --- a/kindred-icons/Arch_Structure.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Stru - diff --git a/kindred-icons/Arch_Structure_Clone.svg b/kindred-icons/Arch_Structure_Clone.svg deleted file mode 100644 index 434290d61a..0000000000 --- a/kindred-icons/Arch_Structure_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/Arch_Structure_Tree.svg b/kindred-icons/Arch_Structure_Tree.svg deleted file mode 100644 index 300e38c299..0000000000 --- a/kindred-icons/Arch_Structure_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ST - diff --git a/kindred-icons/Arch_Subcomponent.svg b/kindred-icons/Arch_Subcomponent.svg deleted file mode 100644 index a636d7d40b..0000000000 --- a/kindred-icons/Arch_Subcomponent.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Subc - diff --git a/kindred-icons/Arch_Survey.svg b/kindred-icons/Arch_Survey.svg deleted file mode 100644 index 689ec1e6d0..0000000000 --- a/kindred-icons/Arch_Survey.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Surv - diff --git a/kindred-icons/Arch_ToggleIfcBrepFlag.svg b/kindred-icons/Arch_ToggleIfcBrepFlag.svg deleted file mode 100644 index 062c3aef81..0000000000 --- a/kindred-icons/Arch_ToggleIfcBrepFlag.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TIBF - diff --git a/kindred-icons/Arch_ToggleSubs.svg b/kindred-icons/Arch_ToggleSubs.svg deleted file mode 100644 index bfee79d140..0000000000 --- a/kindred-icons/Arch_ToggleSubs.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TS - diff --git a/kindred-icons/Arch_Truss.svg b/kindred-icons/Arch_Truss.svg deleted file mode 100644 index 9cc7b3726b..0000000000 --- a/kindred-icons/Arch_Truss.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Trus - diff --git a/kindred-icons/Arch_Truss_Tree.svg b/kindred-icons/Arch_Truss_Tree.svg deleted file mode 100644 index 863be991c2..0000000000 --- a/kindred-icons/Arch_Truss_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TT - diff --git a/kindred-icons/Arch_View_Cut.svg b/kindred-icons/Arch_View_Cut.svg deleted file mode 100644 index 0496fdbc16..0000000000 --- a/kindred-icons/Arch_View_Cut.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VC - diff --git a/kindred-icons/Arch_Wall.svg b/kindred-icons/Arch_Wall.svg deleted file mode 100644 index 3e4a3c7777..0000000000 --- a/kindred-icons/Arch_Wall.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wall - diff --git a/kindred-icons/Arch_Wall_Clone.svg b/kindred-icons/Arch_Wall_Clone.svg deleted file mode 100644 index a1b135bb91..0000000000 --- a/kindred-icons/Arch_Wall_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WC - diff --git a/kindred-icons/Arch_Wall_Tree.svg b/kindred-icons/Arch_Wall_Tree.svg deleted file mode 100644 index 5656ff2176..0000000000 --- a/kindred-icons/Arch_Wall_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WT - diff --git a/kindred-icons/Arch_Wall_Tree_Assembly.svg b/kindred-icons/Arch_Wall_Tree_Assembly.svg deleted file mode 100644 index 210425b258..0000000000 --- a/kindred-icons/Arch_Wall_Tree_Assembly.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WTA - diff --git a/kindred-icons/Arch_Window.svg b/kindred-icons/Arch_Window.svg deleted file mode 100644 index 8cf8fd51e2..0000000000 --- a/kindred-icons/Arch_Window.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wind - diff --git a/kindred-icons/Arch_Window_Clone.svg b/kindred-icons/Arch_Window_Clone.svg deleted file mode 100644 index a1b135bb91..0000000000 --- a/kindred-icons/Arch_Window_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WC - diff --git a/kindred-icons/Arch_Window_Tree.svg b/kindred-icons/Arch_Window_Tree.svg deleted file mode 100644 index 5656ff2176..0000000000 --- a/kindred-icons/Arch_Window_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WT - diff --git a/kindred-icons/AssemblyWorkbench.svg b/kindred-icons/AssemblyWorkbench.svg deleted file mode 100644 index 5b827ee99a..0000000000 --- a/kindred-icons/AssemblyWorkbench.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/kindred-icons/Assembly_ActivateAssembly.svg b/kindred-icons/Assembly_ActivateAssembly.svg deleted file mode 100644 index c21bee4756..0000000000 --- a/kindred-icons/Assembly_ActivateAssembly.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AA - diff --git a/kindred-icons/Assembly_AssemblyLink.svg b/kindred-icons/Assembly_AssemblyLink.svg deleted file mode 100644 index 904a54104c..0000000000 --- a/kindred-icons/Assembly_AssemblyLink.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AL - diff --git a/kindred-icons/Assembly_AssemblyLinkRigid.svg b/kindred-icons/Assembly_AssemblyLinkRigid.svg deleted file mode 100644 index 40c69cb3f2..0000000000 --- a/kindred-icons/Assembly_AssemblyLinkRigid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ALR - diff --git a/kindred-icons/Assembly_BillOfMaterials.svg b/kindred-icons/Assembly_BillOfMaterials.svg deleted file mode 100644 index c767b05f9c..0000000000 --- a/kindred-icons/Assembly_BillOfMaterials.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BOM - diff --git a/kindred-icons/Assembly_BillOfMaterialsGroup.svg b/kindred-icons/Assembly_BillOfMaterialsGroup.svg deleted file mode 100644 index 29508e6950..0000000000 --- a/kindred-icons/Assembly_BillOfMaterialsGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BOMG - diff --git a/kindred-icons/Assembly_CreateAssembly.svg b/kindred-icons/Assembly_CreateAssembly.svg deleted file mode 100644 index 3a805ec8c4..0000000000 --- a/kindred-icons/Assembly_CreateAssembly.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/Assembly_CreateJointAngle.svg b/kindred-icons/Assembly_CreateJointAngle.svg deleted file mode 100644 index d0d41ad5bc..0000000000 --- a/kindred-icons/Assembly_CreateJointAngle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJA - diff --git a/kindred-icons/Assembly_CreateJointBall.svg b/kindred-icons/Assembly_CreateJointBall.svg deleted file mode 100644 index 93bc014df4..0000000000 --- a/kindred-icons/Assembly_CreateJointBall.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJB - diff --git a/kindred-icons/Assembly_CreateJointCylindrical.svg b/kindred-icons/Assembly_CreateJointCylindrical.svg deleted file mode 100644 index 29e5c2e35c..0000000000 --- a/kindred-icons/Assembly_CreateJointCylindrical.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJC - diff --git a/kindred-icons/Assembly_CreateJointDistance.svg b/kindred-icons/Assembly_CreateJointDistance.svg deleted file mode 100644 index a8b86d1011..0000000000 --- a/kindred-icons/Assembly_CreateJointDistance.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - d - diff --git a/kindred-icons/Assembly_CreateJointFixed.svg b/kindred-icons/Assembly_CreateJointFixed.svg deleted file mode 100644 index 498746ac82..0000000000 --- a/kindred-icons/Assembly_CreateJointFixed.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/Assembly_CreateJointGears.svg b/kindred-icons/Assembly_CreateJointGears.svg deleted file mode 100644 index 19a4944560..0000000000 --- a/kindred-icons/Assembly_CreateJointGears.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJG - diff --git a/kindred-icons/Assembly_CreateJointParallel.svg b/kindred-icons/Assembly_CreateJointParallel.svg deleted file mode 100644 index d2f1dc862a..0000000000 --- a/kindred-icons/Assembly_CreateJointParallel.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJP - diff --git a/kindred-icons/Assembly_CreateJointPerpendicular.svg b/kindred-icons/Assembly_CreateJointPerpendicular.svg deleted file mode 100644 index d2f1dc862a..0000000000 --- a/kindred-icons/Assembly_CreateJointPerpendicular.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJP - diff --git a/kindred-icons/Assembly_CreateJointPlanar.svg b/kindred-icons/Assembly_CreateJointPlanar.svg deleted file mode 100644 index d2f1dc862a..0000000000 --- a/kindred-icons/Assembly_CreateJointPlanar.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJP - diff --git a/kindred-icons/Assembly_CreateJointPulleys.svg b/kindred-icons/Assembly_CreateJointPulleys.svg deleted file mode 100644 index d2f1dc862a..0000000000 --- a/kindred-icons/Assembly_CreateJointPulleys.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJP - diff --git a/kindred-icons/Assembly_CreateJointRackPinion.svg b/kindred-icons/Assembly_CreateJointRackPinion.svg deleted file mode 100644 index da15eaf629..0000000000 --- a/kindred-icons/Assembly_CreateJointRackPinion.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJRP - diff --git a/kindred-icons/Assembly_CreateJointRevolute.svg b/kindred-icons/Assembly_CreateJointRevolute.svg deleted file mode 100644 index 621a7f7e68..0000000000 --- a/kindred-icons/Assembly_CreateJointRevolute.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/Assembly_CreateJointScrew.svg b/kindred-icons/Assembly_CreateJointScrew.svg deleted file mode 100644 index 8e1cd2dc80..0000000000 --- a/kindred-icons/Assembly_CreateJointScrew.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJS - diff --git a/kindred-icons/Assembly_CreateJointSlider.svg b/kindred-icons/Assembly_CreateJointSlider.svg deleted file mode 100644 index 2cad807552..0000000000 --- a/kindred-icons/Assembly_CreateJointSlider.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/Assembly_CreateJointTangent.svg b/kindred-icons/Assembly_CreateJointTangent.svg deleted file mode 100644 index bc11e26d76..0000000000 --- a/kindred-icons/Assembly_CreateJointTangent.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CJT - diff --git a/kindred-icons/Assembly_CreateSimulation.svg b/kindred-icons/Assembly_CreateSimulation.svg deleted file mode 100644 index de95b9f693..0000000000 --- a/kindred-icons/Assembly_CreateSimulation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/Assembly_ExplodedView.svg b/kindred-icons/Assembly_ExplodedView.svg deleted file mode 100644 index d187fc3f18..0000000000 --- a/kindred-icons/Assembly_ExplodedView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EV - diff --git a/kindred-icons/Assembly_ExplodedViewGroup.svg b/kindred-icons/Assembly_ExplodedViewGroup.svg deleted file mode 100644 index 2de16db06b..0000000000 --- a/kindred-icons/Assembly_ExplodedViewGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EVG - diff --git a/kindred-icons/Assembly_ExportASMT.svg b/kindred-icons/Assembly_ExportASMT.svg deleted file mode 100644 index d4257b75ca..0000000000 --- a/kindred-icons/Assembly_ExportASMT.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EASM - diff --git a/kindred-icons/Assembly_InsertLink.svg b/kindred-icons/Assembly_InsertLink.svg deleted file mode 100644 index 5b8919af21..0000000000 --- a/kindred-icons/Assembly_InsertLink.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/Assembly_JointGroup.svg b/kindred-icons/Assembly_JointGroup.svg deleted file mode 100644 index 0a120f82f9..0000000000 --- a/kindred-icons/Assembly_JointGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - JG - diff --git a/kindred-icons/Assembly_SimulationGroup.svg b/kindred-icons/Assembly_SimulationGroup.svg deleted file mode 100644 index 1589cd3ca1..0000000000 --- a/kindred-icons/Assembly_SimulationGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SG - diff --git a/kindred-icons/Assembly_SolveAssembly.svg b/kindred-icons/Assembly_SolveAssembly.svg deleted file mode 100644 index 8595b4db16..0000000000 --- a/kindred-icons/Assembly_SolveAssembly.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SA - diff --git a/kindred-icons/Assembly_ToggleGrounded.svg b/kindred-icons/Assembly_ToggleGrounded.svg deleted file mode 100644 index 44270c0c8b..0000000000 --- a/kindred-icons/Assembly_ToggleGrounded.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TG - diff --git a/kindred-icons/BIMWorkbench.svg b/kindred-icons/BIMWorkbench.svg deleted file mode 100644 index b37a258423..0000000000 --- a/kindred-icons/BIMWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BIMW - diff --git a/kindred-icons/BIM_ArchView.svg b/kindred-icons/BIM_ArchView.svg deleted file mode 100644 index 3270e36dea..0000000000 --- a/kindred-icons/BIM_ArchView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AV - diff --git a/kindred-icons/BIM_Background.svg b/kindred-icons/BIM_Background.svg deleted file mode 100644 index 4c23f6d0f9..0000000000 --- a/kindred-icons/BIM_Background.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Back - diff --git a/kindred-icons/BIM_Beam.svg b/kindred-icons/BIM_Beam.svg deleted file mode 100644 index f74cc59393..0000000000 --- a/kindred-icons/BIM_Beam.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Beam - diff --git a/kindred-icons/BIM_Box.svg b/kindred-icons/BIM_Box.svg deleted file mode 100644 index f23ffe5156..0000000000 --- a/kindred-icons/BIM_Box.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Box - diff --git a/kindred-icons/BIM_Classification.svg b/kindred-icons/BIM_Classification.svg deleted file mode 100644 index 395c420ec0..0000000000 --- a/kindred-icons/BIM_Classification.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Clas - diff --git a/kindred-icons/BIM_Clone.svg b/kindred-icons/BIM_Clone.svg deleted file mode 100644 index 24d21e3775..0000000000 --- a/kindred-icons/BIM_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Clon - diff --git a/kindred-icons/BIM_Column.svg b/kindred-icons/BIM_Column.svg deleted file mode 100644 index adcc2a7263..0000000000 --- a/kindred-icons/BIM_Column.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Colu - diff --git a/kindred-icons/BIM_Copy.svg b/kindred-icons/BIM_Copy.svg deleted file mode 100644 index 28bebaf9aa..0000000000 --- a/kindred-icons/BIM_Copy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Copy - diff --git a/kindred-icons/BIM_Diff.svg b/kindred-icons/BIM_Diff.svg deleted file mode 100644 index 52304687b7..0000000000 --- a/kindred-icons/BIM_Diff.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Diff - diff --git a/kindred-icons/BIM_DimensionAligned.svg b/kindred-icons/BIM_DimensionAligned.svg deleted file mode 100644 index 7f2d44ae94..0000000000 --- a/kindred-icons/BIM_DimensionAligned.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DA - diff --git a/kindred-icons/BIM_DimensionHorizontal.svg b/kindred-icons/BIM_DimensionHorizontal.svg deleted file mode 100644 index 2b4941a9dd..0000000000 --- a/kindred-icons/BIM_DimensionHorizontal.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DH - diff --git a/kindred-icons/BIM_DimensionVertical.svg b/kindred-icons/BIM_DimensionVertical.svg deleted file mode 100644 index d06396ea85..0000000000 --- a/kindred-icons/BIM_DimensionVertical.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DV - diff --git a/kindred-icons/BIM_Door.svg b/kindred-icons/BIM_Door.svg deleted file mode 100644 index 4ed24b4505..0000000000 --- a/kindred-icons/BIM_Door.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Door - diff --git a/kindred-icons/BIM_Glue.svg b/kindred-icons/BIM_Glue.svg deleted file mode 100644 index d74e8665fc..0000000000 --- a/kindred-icons/BIM_Glue.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Glue - diff --git a/kindred-icons/BIM_Hatch.svg b/kindred-icons/BIM_Hatch.svg deleted file mode 100644 index a0d05389aa..0000000000 --- a/kindred-icons/BIM_Hatch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Hatc - diff --git a/kindred-icons/BIM_Help.svg b/kindred-icons/BIM_Help.svg deleted file mode 100644 index 8a55ac0d59..0000000000 --- a/kindred-icons/BIM_Help.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Help - diff --git a/kindred-icons/BIM_IfcElements.svg b/kindred-icons/BIM_IfcElements.svg deleted file mode 100644 index 71e58a9637..0000000000 --- a/kindred-icons/BIM_IfcElements.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IE - diff --git a/kindred-icons/BIM_IfcProperties.svg b/kindred-icons/BIM_IfcProperties.svg deleted file mode 100644 index 3d6b5a8e6d..0000000000 --- a/kindred-icons/BIM_IfcProperties.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IP - diff --git a/kindred-icons/BIM_IfcQuantities.svg b/kindred-icons/BIM_IfcQuantities.svg deleted file mode 100644 index 1ec47e3306..0000000000 --- a/kindred-icons/BIM_IfcQuantities.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IQ - diff --git a/kindred-icons/BIM_ImagePlane.svg b/kindred-icons/BIM_ImagePlane.svg deleted file mode 100644 index 3d6b5a8e6d..0000000000 --- a/kindred-icons/BIM_ImagePlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IP - diff --git a/kindred-icons/BIM_InsertView.svg b/kindred-icons/BIM_InsertView.svg deleted file mode 100644 index f5a94e535b..0000000000 --- a/kindred-icons/BIM_InsertView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IV - diff --git a/kindred-icons/BIM_Layers.svg b/kindred-icons/BIM_Layers.svg deleted file mode 100644 index ab1f1fb589..0000000000 --- a/kindred-icons/BIM_Layers.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Laye - diff --git a/kindred-icons/BIM_Leader.svg b/kindred-icons/BIM_Leader.svg deleted file mode 100644 index 6453848c2c..0000000000 --- a/kindred-icons/BIM_Leader.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Lead - diff --git a/kindred-icons/BIM_Levels.svg b/kindred-icons/BIM_Levels.svg deleted file mode 100644 index ec50d836fc..0000000000 --- a/kindred-icons/BIM_Levels.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Leve - diff --git a/kindred-icons/BIM_Library.svg b/kindred-icons/BIM_Library.svg deleted file mode 100644 index 9112d73f1e..0000000000 --- a/kindred-icons/BIM_Library.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Libr - diff --git a/kindred-icons/BIM_Material.svg b/kindred-icons/BIM_Material.svg deleted file mode 100644 index 8c7ffb9f57..0000000000 --- a/kindred-icons/BIM_Material.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mate - diff --git a/kindred-icons/BIM_MoveView.svg b/kindred-icons/BIM_MoveView.svg deleted file mode 100644 index 9cdc539b4d..0000000000 --- a/kindred-icons/BIM_MoveView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MV - diff --git a/kindred-icons/BIM_Nudge.svg b/kindred-icons/BIM_Nudge.svg deleted file mode 100644 index 45585d3950..0000000000 --- a/kindred-icons/BIM_Nudge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Nudg - diff --git a/kindred-icons/BIM_PageDefault.svg b/kindred-icons/BIM_PageDefault.svg deleted file mode 100644 index d1cc7b6092..0000000000 --- a/kindred-icons/BIM_PageDefault.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PD - diff --git a/kindred-icons/BIM_Phases.svg b/kindred-icons/BIM_Phases.svg deleted file mode 100644 index 9617f95294..0000000000 --- a/kindred-icons/BIM_Phases.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Phas - diff --git a/kindred-icons/BIM_Preflight.svg b/kindred-icons/BIM_Preflight.svg deleted file mode 100644 index 4425399eb2..0000000000 --- a/kindred-icons/BIM_Preflight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Pref - diff --git a/kindred-icons/BIM_Project.svg b/kindred-icons/BIM_Project.svg deleted file mode 100644 index 2b2821eb71..0000000000 --- a/kindred-icons/BIM_Project.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Proj - diff --git a/kindred-icons/BIM_ProjectManager.svg b/kindred-icons/BIM_ProjectManager.svg deleted file mode 100644 index 1fa9f834cf..0000000000 --- a/kindred-icons/BIM_ProjectManager.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PM - diff --git a/kindred-icons/BIM_Reextrude.svg b/kindred-icons/BIM_Reextrude.svg deleted file mode 100644 index 55a1b7914e..0000000000 --- a/kindred-icons/BIM_Reextrude.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Reex - diff --git a/kindred-icons/BIM_Reorder.svg b/kindred-icons/BIM_Reorder.svg deleted file mode 100644 index 79738b7cbd..0000000000 --- a/kindred-icons/BIM_Reorder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Reor - diff --git a/kindred-icons/BIM_Report.svg b/kindred-icons/BIM_Report.svg deleted file mode 100644 index da0bd7d6b9..0000000000 --- a/kindred-icons/BIM_Report.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Repo - diff --git a/kindred-icons/BIM_ResetCloneColors.svg b/kindred-icons/BIM_ResetCloneColors.svg deleted file mode 100644 index 3361a45079..0000000000 --- a/kindred-icons/BIM_ResetCloneColors.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RCC - diff --git a/kindred-icons/BIM_Rewire.svg b/kindred-icons/BIM_Rewire.svg deleted file mode 100644 index 3f7b0626b5..0000000000 --- a/kindred-icons/BIM_Rewire.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Rewi - diff --git a/kindred-icons/BIM_Slab.svg b/kindred-icons/BIM_Slab.svg deleted file mode 100644 index c84964fc43..0000000000 --- a/kindred-icons/BIM_Slab.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Slab - diff --git a/kindred-icons/BIM_TogglePanels.svg b/kindred-icons/BIM_TogglePanels.svg deleted file mode 100644 index 886898baf7..0000000000 --- a/kindred-icons/BIM_TogglePanels.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TP - diff --git a/kindred-icons/BIM_Trash.svg b/kindred-icons/BIM_Trash.svg deleted file mode 100644 index bedc30b85c..0000000000 --- a/kindred-icons/BIM_Trash.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tras - diff --git a/kindred-icons/BIM_Tutorial.svg b/kindred-icons/BIM_Tutorial.svg deleted file mode 100644 index 0f928f196b..0000000000 --- a/kindred-icons/BIM_Tutorial.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tuto - diff --git a/kindred-icons/BIM_Unclone.svg b/kindred-icons/BIM_Unclone.svg deleted file mode 100644 index 3272e2124d..0000000000 --- a/kindred-icons/BIM_Unclone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Uncl - diff --git a/kindred-icons/BIM_Views.svg b/kindred-icons/BIM_Views.svg deleted file mode 100644 index 551ce3aa39..0000000000 --- a/kindred-icons/BIM_Views.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - View - diff --git a/kindred-icons/BIM_WPView.svg b/kindred-icons/BIM_WPView.svg deleted file mode 100644 index bb148552fd..0000000000 --- a/kindred-icons/BIM_WPView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WPV - diff --git a/kindred-icons/BIM_Welcome.svg b/kindred-icons/BIM_Welcome.svg deleted file mode 100644 index b3d6258de8..0000000000 --- a/kindred-icons/BIM_Welcome.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Welc - diff --git a/kindred-icons/BIM_Windows.svg b/kindred-icons/BIM_Windows.svg deleted file mode 100644 index 8cf8fd51e2..0000000000 --- a/kindred-icons/BIM_Windows.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wind - diff --git a/kindred-icons/CAM_3DPocket.svg b/kindred-icons/CAM_3DPocket.svg deleted file mode 100644 index 469c488aa3..0000000000 --- a/kindred-icons/CAM_3DPocket.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 3DP - diff --git a/kindred-icons/CAM_3DSurface.svg b/kindred-icons/CAM_3DSurface.svg deleted file mode 100644 index 522570ce27..0000000000 --- a/kindred-icons/CAM_3DSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 3DS - diff --git a/kindred-icons/CAM_Adaptive.svg b/kindred-icons/CAM_Adaptive.svg deleted file mode 100644 index f5d041ed31..0000000000 --- a/kindred-icons/CAM_Adaptive.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Adap - diff --git a/kindred-icons/CAM_Area.svg b/kindred-icons/CAM_Area.svg deleted file mode 100644 index 15740436b1..0000000000 --- a/kindred-icons/CAM_Area.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Area - diff --git a/kindred-icons/CAM_Area_View.svg b/kindred-icons/CAM_Area_View.svg deleted file mode 100644 index f4d301a7a3..0000000000 --- a/kindred-icons/CAM_Area_View.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AV - diff --git a/kindred-icons/CAM_Area_Workplane.svg b/kindred-icons/CAM_Area_Workplane.svg deleted file mode 100644 index 984064b50b..0000000000 --- a/kindred-icons/CAM_Area_Workplane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AW - diff --git a/kindred-icons/CAM_Array.svg b/kindred-icons/CAM_Array.svg deleted file mode 100644 index a09bd59563..0000000000 --- a/kindred-icons/CAM_Array.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Arra - diff --git a/kindred-icons/CAM_BFastForward.svg b/kindred-icons/CAM_BFastForward.svg deleted file mode 100644 index aa6ea13e4a..0000000000 --- a/kindred-icons/CAM_BFastForward.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BFF - diff --git a/kindred-icons/CAM_BPause.svg b/kindred-icons/CAM_BPause.svg deleted file mode 100644 index 5a0b9cdf67..0000000000 --- a/kindred-icons/CAM_BPause.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BP - diff --git a/kindred-icons/CAM_BPlay.svg b/kindred-icons/CAM_BPlay.svg deleted file mode 100644 index 5a0b9cdf67..0000000000 --- a/kindred-icons/CAM_BPlay.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BP - diff --git a/kindred-icons/CAM_BStep.svg b/kindred-icons/CAM_BStep.svg deleted file mode 100644 index 35175cf21d..0000000000 --- a/kindred-icons/CAM_BStep.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BS - diff --git a/kindred-icons/CAM_BStop.svg b/kindred-icons/CAM_BStop.svg deleted file mode 100644 index 35175cf21d..0000000000 --- a/kindred-icons/CAM_BStop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BS - diff --git a/kindred-icons/CAM_BaseGeometry.svg b/kindred-icons/CAM_BaseGeometry.svg deleted file mode 100644 index 451451ac59..0000000000 --- a/kindred-icons/CAM_BaseGeometry.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BG - diff --git a/kindred-icons/CAM_Camotics.svg b/kindred-icons/CAM_Camotics.svg deleted file mode 100644 index 68c175091c..0000000000 --- a/kindred-icons/CAM_Camotics.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Camo - diff --git a/kindred-icons/CAM_Comment.svg b/kindred-icons/CAM_Comment.svg deleted file mode 100644 index c9eaa5e639..0000000000 --- a/kindred-icons/CAM_Comment.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Comm - diff --git a/kindred-icons/CAM_Compound.svg b/kindred-icons/CAM_Compound.svg deleted file mode 100644 index a415f0f2fe..0000000000 --- a/kindred-icons/CAM_Compound.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Comp - diff --git a/kindred-icons/CAM_Copy.svg b/kindred-icons/CAM_Copy.svg deleted file mode 100644 index b99ffb88c2..0000000000 --- a/kindred-icons/CAM_Copy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Copy - diff --git a/kindred-icons/CAM_Custom.svg b/kindred-icons/CAM_Custom.svg deleted file mode 100644 index 8feb5d4a77..0000000000 --- a/kindred-icons/CAM_Custom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cust - diff --git a/kindred-icons/CAM_Datums.svg b/kindred-icons/CAM_Datums.svg deleted file mode 100644 index 62d6e059b3..0000000000 --- a/kindred-icons/CAM_Datums.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Datu - diff --git a/kindred-icons/CAM_Deburr.svg b/kindred-icons/CAM_Deburr.svg deleted file mode 100644 index 0d713432a3..0000000000 --- a/kindred-icons/CAM_Deburr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Debu - diff --git a/kindred-icons/CAM_Depths.svg b/kindred-icons/CAM_Depths.svg deleted file mode 100644 index ae953d957f..0000000000 --- a/kindred-icons/CAM_Depths.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dept - diff --git a/kindred-icons/CAM_Dressup.svg b/kindred-icons/CAM_Dressup.svg deleted file mode 100644 index e0d9d257d4..0000000000 --- a/kindred-icons/CAM_Dressup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dres - diff --git a/kindred-icons/CAM_Drilling.svg b/kindred-icons/CAM_Drilling.svg deleted file mode 100644 index adc4970960..0000000000 --- a/kindred-icons/CAM_Drilling.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dril - diff --git a/kindred-icons/CAM_Engrave.svg b/kindred-icons/CAM_Engrave.svg deleted file mode 100644 index 634153f965..0000000000 --- a/kindred-icons/CAM_Engrave.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Engr - diff --git a/kindred-icons/CAM_ExportTemplate.svg b/kindred-icons/CAM_ExportTemplate.svg deleted file mode 100644 index 9b8fc4a10a..0000000000 --- a/kindred-icons/CAM_ExportTemplate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ET - diff --git a/kindred-icons/CAM_Face.svg b/kindred-icons/CAM_Face.svg deleted file mode 100644 index 2ad08f97e3..0000000000 --- a/kindred-icons/CAM_Face.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Face - diff --git a/kindred-icons/CAM_FacePocket.svg b/kindred-icons/CAM_FacePocket.svg deleted file mode 100644 index cd634c683f..0000000000 --- a/kindred-icons/CAM_FacePocket.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FP - diff --git a/kindred-icons/CAM_FaceProfile.svg b/kindred-icons/CAM_FaceProfile.svg deleted file mode 100644 index cd634c683f..0000000000 --- a/kindred-icons/CAM_FaceProfile.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FP - diff --git a/kindred-icons/CAM_Heights.svg b/kindred-icons/CAM_Heights.svg deleted file mode 100644 index f747f80311..0000000000 --- a/kindred-icons/CAM_Heights.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Heig - diff --git a/kindred-icons/CAM_Helix.svg b/kindred-icons/CAM_Helix.svg deleted file mode 100644 index 7dab6e7dfd..0000000000 --- a/kindred-icons/CAM_Helix.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Heli - diff --git a/kindred-icons/CAM_Inspect.svg b/kindred-icons/CAM_Inspect.svg deleted file mode 100644 index 27c2a85f2e..0000000000 --- a/kindred-icons/CAM_Inspect.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Insp - diff --git a/kindred-icons/CAM_Job.svg b/kindred-icons/CAM_Job.svg deleted file mode 100644 index e2fb5cbf0f..0000000000 --- a/kindred-icons/CAM_Job.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Job - diff --git a/kindred-icons/CAM_LengthOffset.svg b/kindred-icons/CAM_LengthOffset.svg deleted file mode 100644 index 3f46f7b868..0000000000 --- a/kindred-icons/CAM_LengthOffset.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LO - diff --git a/kindred-icons/CAM_OpActive.svg b/kindred-icons/CAM_OpActive.svg deleted file mode 100644 index 8c8c179ede..0000000000 --- a/kindred-icons/CAM_OpActive.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OA - diff --git a/kindred-icons/CAM_OpCopy.svg b/kindred-icons/CAM_OpCopy.svg deleted file mode 100644 index e4ba1c1833..0000000000 --- a/kindred-icons/CAM_OpCopy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OC - diff --git a/kindred-icons/CAM_OperationA.svg b/kindred-icons/CAM_OperationA.svg deleted file mode 100644 index 8c8c179ede..0000000000 --- a/kindred-icons/CAM_OperationA.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OA - diff --git a/kindred-icons/CAM_OperationB.svg b/kindred-icons/CAM_OperationB.svg deleted file mode 100644 index 6795fe966c..0000000000 --- a/kindred-icons/CAM_OperationB.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OB - diff --git a/kindred-icons/CAM_Pocket.svg b/kindred-icons/CAM_Pocket.svg deleted file mode 100644 index 8da723fc0b..0000000000 --- a/kindred-icons/CAM_Pocket.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Pock - diff --git a/kindred-icons/CAM_Post.svg b/kindred-icons/CAM_Post.svg deleted file mode 100644 index 512d78bc72..0000000000 --- a/kindred-icons/CAM_Post.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Post - diff --git a/kindred-icons/CAM_PostSelected.svg b/kindred-icons/CAM_PostSelected.svg deleted file mode 100644 index f8fcbbcc88..0000000000 --- a/kindred-icons/CAM_PostSelected.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PS - diff --git a/kindred-icons/CAM_Probe.svg b/kindred-icons/CAM_Probe.svg deleted file mode 100644 index e2765bdb99..0000000000 --- a/kindred-icons/CAM_Probe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Prob - diff --git a/kindred-icons/CAM_Profile.svg b/kindred-icons/CAM_Profile.svg deleted file mode 100644 index fc5a385a4c..0000000000 --- a/kindred-icons/CAM_Profile.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Prof - diff --git a/kindred-icons/CAM_Profile_Edges.svg b/kindred-icons/CAM_Profile_Edges.svg deleted file mode 100644 index e02dca7c87..0000000000 --- a/kindred-icons/CAM_Profile_Edges.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PE - diff --git a/kindred-icons/CAM_Profile_Face.svg b/kindred-icons/CAM_Profile_Face.svg deleted file mode 100644 index 7d6b4ea5ab..0000000000 --- a/kindred-icons/CAM_Profile_Face.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PF - diff --git a/kindred-icons/CAM_Sanity.svg b/kindred-icons/CAM_Sanity.svg deleted file mode 100644 index da3f6e87f7..0000000000 --- a/kindred-icons/CAM_Sanity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sani - diff --git a/kindred-icons/CAM_SelectLoop.svg b/kindred-icons/CAM_SelectLoop.svg deleted file mode 100644 index a56242c604..0000000000 --- a/kindred-icons/CAM_SelectLoop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SL - diff --git a/kindred-icons/CAM_SetupSheet.svg b/kindred-icons/CAM_SetupSheet.svg deleted file mode 100644 index 77e796c274..0000000000 --- a/kindred-icons/CAM_SetupSheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SS - diff --git a/kindred-icons/CAM_Shape.svg b/kindred-icons/CAM_Shape.svg deleted file mode 100644 index 910fc29975..0000000000 --- a/kindred-icons/CAM_Shape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Shap - diff --git a/kindred-icons/CAM_ShapeTC.svg b/kindred-icons/CAM_ShapeTC.svg deleted file mode 100644 index 68f2512a13..0000000000 --- a/kindred-icons/CAM_ShapeTC.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - STC - diff --git a/kindred-icons/CAM_SimpleCopy.svg b/kindred-icons/CAM_SimpleCopy.svg deleted file mode 100644 index 7537791088..0000000000 --- a/kindred-icons/CAM_SimpleCopy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/CAM_Simulator.svg b/kindred-icons/CAM_Simulator.svg deleted file mode 100644 index 4c22400e30..0000000000 --- a/kindred-icons/CAM_Simulator.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Simu - diff --git a/kindred-icons/CAM_SimulatorGL.svg b/kindred-icons/CAM_SimulatorGL.svg deleted file mode 100644 index a43de2c112..0000000000 --- a/kindred-icons/CAM_SimulatorGL.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SGL - diff --git a/kindred-icons/CAM_Slot.svg b/kindred-icons/CAM_Slot.svg deleted file mode 100644 index cd858656f5..0000000000 --- a/kindred-icons/CAM_Slot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Slot - diff --git a/kindred-icons/CAM_StartPoint.svg b/kindred-icons/CAM_StartPoint.svg deleted file mode 100644 index 5f9ba08644..0000000000 --- a/kindred-icons/CAM_StartPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/CAM_Stop.svg b/kindred-icons/CAM_Stop.svg deleted file mode 100644 index 1e12ea2e75..0000000000 --- a/kindred-icons/CAM_Stop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Stop - diff --git a/kindred-icons/CAM_Tapping.svg b/kindred-icons/CAM_Tapping.svg deleted file mode 100644 index 457f1605fb..0000000000 --- a/kindred-icons/CAM_Tapping.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tapp - diff --git a/kindred-icons/CAM_ThreadMilling.svg b/kindred-icons/CAM_ThreadMilling.svg deleted file mode 100644 index 975aa2a315..0000000000 --- a/kindred-icons/CAM_ThreadMilling.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TM - diff --git a/kindred-icons/CAM_ToolBit.svg b/kindred-icons/CAM_ToolBit.svg deleted file mode 100644 index be83bb0034..0000000000 --- a/kindred-icons/CAM_ToolBit.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TB - diff --git a/kindred-icons/CAM_ToolChange.svg b/kindred-icons/CAM_ToolChange.svg deleted file mode 100644 index 0918fa94c3..0000000000 --- a/kindred-icons/CAM_ToolChange.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TC - diff --git a/kindred-icons/CAM_ToolController.svg b/kindred-icons/CAM_ToolController.svg deleted file mode 100644 index 0918fa94c3..0000000000 --- a/kindred-icons/CAM_ToolController.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TC - diff --git a/kindred-icons/CAM_ToolDuplicate.svg b/kindred-icons/CAM_ToolDuplicate.svg deleted file mode 100644 index f4c08944a4..0000000000 --- a/kindred-icons/CAM_ToolDuplicate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TD - diff --git a/kindred-icons/CAM_ToolTable.svg b/kindred-icons/CAM_ToolTable.svg deleted file mode 100644 index d2e9eba7a5..0000000000 --- a/kindred-icons/CAM_ToolTable.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TT - diff --git a/kindred-icons/CAM_ToolTableAdd.svg b/kindred-icons/CAM_ToolTableAdd.svg deleted file mode 100644 index 128dd55d62..0000000000 --- a/kindred-icons/CAM_ToolTableAdd.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TTA - diff --git a/kindred-icons/CAM_ToolTableRemove.svg b/kindred-icons/CAM_ToolTableRemove.svg deleted file mode 100644 index 0100a8fdcd..0000000000 --- a/kindred-icons/CAM_ToolTableRemove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TTR - diff --git a/kindred-icons/CAM_Toolpath.svg b/kindred-icons/CAM_Toolpath.svg deleted file mode 100644 index 16a204f4b0..0000000000 --- a/kindred-icons/CAM_Toolpath.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tool - diff --git a/kindred-icons/CAM_Vcarve.svg b/kindred-icons/CAM_Vcarve.svg deleted file mode 100644 index 5621dbb56c..0000000000 --- a/kindred-icons/CAM_Vcarve.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Vcar - diff --git a/kindred-icons/CAM_Waterline.svg b/kindred-icons/CAM_Waterline.svg deleted file mode 100644 index daa889cd81..0000000000 --- a/kindred-icons/CAM_Waterline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wate - diff --git a/kindred-icons/Constraint_Block.svg b/kindred-icons/Constraint_Block.svg deleted file mode 100644 index b675e613d5..0000000000 --- a/kindred-icons/Constraint_Block.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Bloc - diff --git a/kindred-icons/Constraint_Coincident.svg b/kindred-icons/Constraint_Coincident.svg deleted file mode 100644 index e134f8fe29..0000000000 --- a/kindred-icons/Constraint_Coincident.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Coin - diff --git a/kindred-icons/Constraint_Concentric.svg b/kindred-icons/Constraint_Concentric.svg deleted file mode 100644 index 3f224bdd79..0000000000 --- a/kindred-icons/Constraint_Concentric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Conc - diff --git a/kindred-icons/Constraint_Diameter.svg b/kindred-icons/Constraint_Diameter.svg deleted file mode 100644 index b3f568b6a4..0000000000 --- a/kindred-icons/Constraint_Diameter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Diam - diff --git a/kindred-icons/Constraint_Diameter_Driven.svg b/kindred-icons/Constraint_Diameter_Driven.svg deleted file mode 100644 index 6952dd5cf4..0000000000 --- a/kindred-icons/Constraint_Diameter_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DD - diff --git a/kindred-icons/Constraint_Dimension.svg b/kindred-icons/Constraint_Dimension.svg deleted file mode 100644 index 6aafbddc42..0000000000 --- a/kindred-icons/Constraint_Dimension.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/kindred-icons/Constraint_Dimension_Driven.svg b/kindred-icons/Constraint_Dimension_Driven.svg deleted file mode 100644 index 6952dd5cf4..0000000000 --- a/kindred-icons/Constraint_Dimension_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DD - diff --git a/kindred-icons/Constraint_Ellipse_Axis_Angle.svg b/kindred-icons/Constraint_Ellipse_Axis_Angle.svg deleted file mode 100644 index f6dcdc830f..0000000000 --- a/kindred-icons/Constraint_Ellipse_Axis_Angle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EAA - diff --git a/kindred-icons/Constraint_Ellipse_Major_Radius.svg b/kindred-icons/Constraint_Ellipse_Major_Radius.svg deleted file mode 100644 index 142fac2afc..0000000000 --- a/kindred-icons/Constraint_Ellipse_Major_Radius.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EMR - diff --git a/kindred-icons/Constraint_Ellipse_Minor_Radius.svg b/kindred-icons/Constraint_Ellipse_Minor_Radius.svg deleted file mode 100644 index 142fac2afc..0000000000 --- a/kindred-icons/Constraint_Ellipse_Minor_Radius.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EMR - diff --git a/kindred-icons/Constraint_Ellipse_Radii.svg b/kindred-icons/Constraint_Ellipse_Radii.svg deleted file mode 100644 index 89ab7a5755..0000000000 --- a/kindred-icons/Constraint_Ellipse_Radii.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ER - diff --git a/kindred-icons/Constraint_EqualLength.svg b/kindred-icons/Constraint_EqualLength.svg deleted file mode 100644 index 931ccbf6ac..0000000000 --- a/kindred-icons/Constraint_EqualLength.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EL - diff --git a/kindred-icons/Constraint_ExternalAngle.svg b/kindred-icons/Constraint_ExternalAngle.svg deleted file mode 100644 index 59a0de3d5e..0000000000 --- a/kindred-icons/Constraint_ExternalAngle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EA - diff --git a/kindred-icons/Constraint_HorVer.svg b/kindred-icons/Constraint_HorVer.svg deleted file mode 100644 index 7504846ba1..0000000000 --- a/kindred-icons/Constraint_HorVer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HV - diff --git a/kindred-icons/Constraint_Horizontal.svg b/kindred-icons/Constraint_Horizontal.svg deleted file mode 100644 index aa76c69c5c..0000000000 --- a/kindred-icons/Constraint_Horizontal.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - H - - - - diff --git a/kindred-icons/Constraint_HorizontalDistance.svg b/kindred-icons/Constraint_HorizontalDistance.svg deleted file mode 100644 index b0a6caabe8..0000000000 --- a/kindred-icons/Constraint_HorizontalDistance.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HD - diff --git a/kindred-icons/Constraint_HorizontalDistance_Driven.svg b/kindred-icons/Constraint_HorizontalDistance_Driven.svg deleted file mode 100644 index 446fed5272..0000000000 --- a/kindred-icons/Constraint_HorizontalDistance_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HDD - diff --git a/kindred-icons/Constraint_InternalAlignment.svg b/kindred-icons/Constraint_InternalAlignment.svg deleted file mode 100644 index b2e026df55..0000000000 --- a/kindred-icons/Constraint_InternalAlignment.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IA - diff --git a/kindred-icons/Constraint_InternalAlignment_Ellipse_Focus1.svg b/kindred-icons/Constraint_InternalAlignment_Ellipse_Focus1.svg deleted file mode 100644 index 2c40a4abed..0000000000 --- a/kindred-icons/Constraint_InternalAlignment_Ellipse_Focus1.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IAEF - diff --git a/kindred-icons/Constraint_InternalAlignment_Ellipse_Focus2.svg b/kindred-icons/Constraint_InternalAlignment_Ellipse_Focus2.svg deleted file mode 100644 index 2c40a4abed..0000000000 --- a/kindred-icons/Constraint_InternalAlignment_Ellipse_Focus2.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IAEF - diff --git a/kindred-icons/Constraint_InternalAlignment_Ellipse_MajorAxis.svg b/kindred-icons/Constraint_InternalAlignment_Ellipse_MajorAxis.svg deleted file mode 100644 index a96519668b..0000000000 --- a/kindred-icons/Constraint_InternalAlignment_Ellipse_MajorAxis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IAEM - diff --git a/kindred-icons/Constraint_InternalAlignment_Ellipse_MinorAxis.svg b/kindred-icons/Constraint_InternalAlignment_Ellipse_MinorAxis.svg deleted file mode 100644 index a96519668b..0000000000 --- a/kindred-icons/Constraint_InternalAlignment_Ellipse_MinorAxis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IAEM - diff --git a/kindred-icons/Constraint_InternalAngle.svg b/kindred-icons/Constraint_InternalAngle.svg deleted file mode 100644 index b2e026df55..0000000000 --- a/kindred-icons/Constraint_InternalAngle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IA - diff --git a/kindred-icons/Constraint_InternalAngle_Driven.svg b/kindred-icons/Constraint_InternalAngle_Driven.svg deleted file mode 100644 index fd351a332b..0000000000 --- a/kindred-icons/Constraint_InternalAngle_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IAD - diff --git a/kindred-icons/Constraint_Length.svg b/kindred-icons/Constraint_Length.svg deleted file mode 100644 index 13d1290b39..0000000000 --- a/kindred-icons/Constraint_Length.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Leng - diff --git a/kindred-icons/Constraint_Length_Driven.svg b/kindred-icons/Constraint_Length_Driven.svg deleted file mode 100644 index 8742b399ef..0000000000 --- a/kindred-icons/Constraint_Length_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LD - diff --git a/kindred-icons/Constraint_Lock.svg b/kindred-icons/Constraint_Lock.svg deleted file mode 100644 index ab78d155a5..0000000000 --- a/kindred-icons/Constraint_Lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Lock - diff --git a/kindred-icons/Constraint_Lock_Driven.svg b/kindred-icons/Constraint_Lock_Driven.svg deleted file mode 100644 index 8742b399ef..0000000000 --- a/kindred-icons/Constraint_Lock_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LD - diff --git a/kindred-icons/Constraint_Parallel.svg b/kindred-icons/Constraint_Parallel.svg deleted file mode 100644 index c00024dcf8..0000000000 --- a/kindred-icons/Constraint_Parallel.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Para - diff --git a/kindred-icons/Constraint_Perpendicular.svg b/kindred-icons/Constraint_Perpendicular.svg deleted file mode 100644 index d581cfddec..0000000000 --- a/kindred-icons/Constraint_Perpendicular.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - diff --git a/kindred-icons/Constraint_PointOnEnd.svg b/kindred-icons/Constraint_PointOnEnd.svg deleted file mode 100644 index ccc226f091..0000000000 --- a/kindred-icons/Constraint_PointOnEnd.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POE - diff --git a/kindred-icons/Constraint_PointOnMidPoint.svg b/kindred-icons/Constraint_PointOnMidPoint.svg deleted file mode 100644 index 02547d29ea..0000000000 --- a/kindred-icons/Constraint_PointOnMidPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POMP - diff --git a/kindred-icons/Constraint_PointOnObject.svg b/kindred-icons/Constraint_PointOnObject.svg deleted file mode 100644 index 744d0905a5..0000000000 --- a/kindred-icons/Constraint_PointOnObject.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POO - diff --git a/kindred-icons/Constraint_PointOnPoint.svg b/kindred-icons/Constraint_PointOnPoint.svg deleted file mode 100644 index 57eb7dbbeb..0000000000 --- a/kindred-icons/Constraint_PointOnPoint.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Constraint_PointOnStart.svg b/kindred-icons/Constraint_PointOnStart.svg deleted file mode 100644 index 92d2ed3d0d..0000000000 --- a/kindred-icons/Constraint_PointOnStart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POS - diff --git a/kindred-icons/Constraint_PointToObject.svg b/kindred-icons/Constraint_PointToObject.svg deleted file mode 100644 index cd5c2e29dd..0000000000 --- a/kindred-icons/Constraint_PointToObject.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PTO - diff --git a/kindred-icons/Constraint_Radiam.svg b/kindred-icons/Constraint_Radiam.svg deleted file mode 100644 index 65b291a6e0..0000000000 --- a/kindred-icons/Constraint_Radiam.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Radi - diff --git a/kindred-icons/Constraint_Radiam_Driven.svg b/kindred-icons/Constraint_Radiam_Driven.svg deleted file mode 100644 index 49a32611ac..0000000000 --- a/kindred-icons/Constraint_Radiam_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RD - diff --git a/kindred-icons/Constraint_Radius.svg b/kindred-icons/Constraint_Radius.svg deleted file mode 100644 index 65b291a6e0..0000000000 --- a/kindred-icons/Constraint_Radius.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Radi - diff --git a/kindred-icons/Constraint_Radius_Driven.svg b/kindred-icons/Constraint_Radius_Driven.svg deleted file mode 100644 index 49a32611ac..0000000000 --- a/kindred-icons/Constraint_Radius_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RD - diff --git a/kindred-icons/Constraint_SnellsLaw.svg b/kindred-icons/Constraint_SnellsLaw.svg deleted file mode 100644 index 938b0fd32b..0000000000 --- a/kindred-icons/Constraint_SnellsLaw.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SL - diff --git a/kindred-icons/Constraint_SnellsLaw_Driven.svg b/kindred-icons/Constraint_SnellsLaw_Driven.svg deleted file mode 100644 index 71315d0522..0000000000 --- a/kindred-icons/Constraint_SnellsLaw_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SLD - diff --git a/kindred-icons/Constraint_Symmetric.svg b/kindred-icons/Constraint_Symmetric.svg deleted file mode 100644 index 249bc5618b..0000000000 --- a/kindred-icons/Constraint_Symmetric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Symm - diff --git a/kindred-icons/Constraint_Tangent.svg b/kindred-icons/Constraint_Tangent.svg deleted file mode 100644 index f1e730b6a1..0000000000 --- a/kindred-icons/Constraint_Tangent.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tang - diff --git a/kindred-icons/Constraint_TangentToEnd.svg b/kindred-icons/Constraint_TangentToEnd.svg deleted file mode 100644 index 3269e3dfcc..0000000000 --- a/kindred-icons/Constraint_TangentToEnd.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TTE - diff --git a/kindred-icons/Constraint_TangentToStart.svg b/kindred-icons/Constraint_TangentToStart.svg deleted file mode 100644 index 95c5ebd839..0000000000 --- a/kindred-icons/Constraint_TangentToStart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TTS - diff --git a/kindred-icons/Constraint_Vertical.svg b/kindred-icons/Constraint_Vertical.svg deleted file mode 100644 index 3b08c3cee9..0000000000 --- a/kindred-icons/Constraint_Vertical.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - V - - - - diff --git a/kindred-icons/Constraint_VerticalDistance.svg b/kindred-icons/Constraint_VerticalDistance.svg deleted file mode 100644 index 75e4892a2f..0000000000 --- a/kindred-icons/Constraint_VerticalDistance.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VD - diff --git a/kindred-icons/Constraint_VerticalDistance_Driven.svg b/kindred-icons/Constraint_VerticalDistance_Driven.svg deleted file mode 100644 index 5af3ab353d..0000000000 --- a/kindred-icons/Constraint_VerticalDistance_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VDD - diff --git a/kindred-icons/Document.svg b/kindred-icons/Document.svg deleted file mode 100644 index 87752557b4..0000000000 --- a/kindred-icons/Document.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - diff --git a/kindred-icons/DraftWorkbench.svg b/kindred-icons/DraftWorkbench.svg deleted file mode 100644 index e809411c2d..0000000000 --- a/kindred-icons/DraftWorkbench.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/kindred-icons/Draft_2DShapeView.svg b/kindred-icons/Draft_2DShapeView.svg deleted file mode 100644 index 8d4113d5d8..0000000000 --- a/kindred-icons/Draft_2DShapeView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 2DSV - diff --git a/kindred-icons/Draft_AddConstruction.svg b/kindred-icons/Draft_AddConstruction.svg deleted file mode 100644 index 50f84f4e81..0000000000 --- a/kindred-icons/Draft_AddConstruction.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AC - diff --git a/kindred-icons/Draft_AddNamedGroup.svg b/kindred-icons/Draft_AddNamedGroup.svg deleted file mode 100644 index 1afee6dadd..0000000000 --- a/kindred-icons/Draft_AddNamedGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ANG - diff --git a/kindred-icons/Draft_AddPoint.svg b/kindred-icons/Draft_AddPoint.svg deleted file mode 100644 index 9e88bdf17e..0000000000 --- a/kindred-icons/Draft_AddPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AP - diff --git a/kindred-icons/Draft_AddToGroup.svg b/kindred-icons/Draft_AddToGroup.svg deleted file mode 100644 index 66a5e33cbc..0000000000 --- a/kindred-icons/Draft_AddToGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ATG - diff --git a/kindred-icons/Draft_AddToLayer.svg b/kindred-icons/Draft_AddToLayer.svg deleted file mode 100644 index a47b068d0b..0000000000 --- a/kindred-icons/Draft_AddToLayer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ATL - diff --git a/kindred-icons/Draft_Annotation_Style.svg b/kindred-icons/Draft_Annotation_Style.svg deleted file mode 100644 index bfdf1e0c40..0000000000 --- a/kindred-icons/Draft_Annotation_Style.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AS - diff --git a/kindred-icons/Draft_Apply.svg b/kindred-icons/Draft_Apply.svg deleted file mode 100644 index ec3062de1b..0000000000 --- a/kindred-icons/Draft_Apply.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Appl - diff --git a/kindred-icons/Draft_Arc.svg b/kindred-icons/Draft_Arc.svg deleted file mode 100644 index b59e72f25c..0000000000 --- a/kindred-icons/Draft_Arc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Arc - diff --git a/kindred-icons/Draft_Arc_3Points.svg b/kindred-icons/Draft_Arc_3Points.svg deleted file mode 100644 index 0bcc9f90f6..0000000000 --- a/kindred-icons/Draft_Arc_3Points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - A3P - diff --git a/kindred-icons/Draft_Array.svg b/kindred-icons/Draft_Array.svg deleted file mode 100644 index 0469a4feb8..0000000000 --- a/kindred-icons/Draft_Array.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Arra - diff --git a/kindred-icons/Draft_AutoGroup.svg b/kindred-icons/Draft_AutoGroup.svg deleted file mode 100644 index d677002134..0000000000 --- a/kindred-icons/Draft_AutoGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AG - diff --git a/kindred-icons/Draft_AutoGroup_off.svg b/kindred-icons/Draft_AutoGroup_off.svg deleted file mode 100644 index cc3b395916..0000000000 --- a/kindred-icons/Draft_AutoGroup_off.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AGO - diff --git a/kindred-icons/Draft_AutoGroup_on.svg b/kindred-icons/Draft_AutoGroup_on.svg deleted file mode 100644 index cc3b395916..0000000000 --- a/kindred-icons/Draft_AutoGroup_on.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AGO - diff --git a/kindred-icons/Draft_BSpline.svg b/kindred-icons/Draft_BSpline.svg deleted file mode 100644 index a7a9861ff2..0000000000 --- a/kindred-icons/Draft_BSpline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BS - diff --git a/kindred-icons/Draft_BezCurve.svg b/kindred-icons/Draft_BezCurve.svg deleted file mode 100644 index 3a2acfdbbd..0000000000 --- a/kindred-icons/Draft_BezCurve.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BC - diff --git a/kindred-icons/Draft_BezSharpNode.svg b/kindred-icons/Draft_BezSharpNode.svg deleted file mode 100644 index b29a7370da..0000000000 --- a/kindred-icons/Draft_BezSharpNode.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSN - diff --git a/kindred-icons/Draft_BezSymNode.svg b/kindred-icons/Draft_BezSymNode.svg deleted file mode 100644 index b29a7370da..0000000000 --- a/kindred-icons/Draft_BezSymNode.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSN - diff --git a/kindred-icons/Draft_BezTanNode.svg b/kindred-icons/Draft_BezTanNode.svg deleted file mode 100644 index 69e00c62b3..0000000000 --- a/kindred-icons/Draft_BezTanNode.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BTN - diff --git a/kindred-icons/Draft_Circle.svg b/kindred-icons/Draft_Circle.svg deleted file mode 100644 index 884f197182..0000000000 --- a/kindred-icons/Draft_Circle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Circ - diff --git a/kindred-icons/Draft_CircularArray.svg b/kindred-icons/Draft_CircularArray.svg deleted file mode 100644 index f5bdf9db23..0000000000 --- a/kindred-icons/Draft_CircularArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CA - diff --git a/kindred-icons/Draft_CircularLinkArray.svg b/kindred-icons/Draft_CircularLinkArray.svg deleted file mode 100644 index 23e9295bfe..0000000000 --- a/kindred-icons/Draft_CircularLinkArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CLA - diff --git a/kindred-icons/Draft_Clone.svg b/kindred-icons/Draft_Clone.svg deleted file mode 100644 index 24d21e3775..0000000000 --- a/kindred-icons/Draft_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Clon - diff --git a/kindred-icons/Draft_Construction.svg b/kindred-icons/Draft_Construction.svg deleted file mode 100644 index 613d8b191d..0000000000 --- a/kindred-icons/Draft_Construction.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cons - diff --git a/kindred-icons/Draft_CubicBezCurve.svg b/kindred-icons/Draft_CubicBezCurve.svg deleted file mode 100644 index 78bc00f7fc..0000000000 --- a/kindred-icons/Draft_CubicBezCurve.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CBC - diff --git a/kindred-icons/Draft_Cursor.svg b/kindred-icons/Draft_Cursor.svg deleted file mode 100644 index e14cf0e426..0000000000 --- a/kindred-icons/Draft_Cursor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Curs - diff --git a/kindred-icons/Draft_DelPoint.svg b/kindred-icons/Draft_DelPoint.svg deleted file mode 100644 index 68b20948f4..0000000000 --- a/kindred-icons/Draft_DelPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DP - diff --git a/kindred-icons/Draft_Dimension.svg b/kindred-icons/Draft_Dimension.svg deleted file mode 100644 index c9c770fa76..0000000000 --- a/kindred-icons/Draft_Dimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dime - diff --git a/kindred-icons/Draft_DimensionAngular.svg b/kindred-icons/Draft_DimensionAngular.svg deleted file mode 100644 index 7f2d44ae94..0000000000 --- a/kindred-icons/Draft_DimensionAngular.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DA - diff --git a/kindred-icons/Draft_DimensionRadius.svg b/kindred-icons/Draft_DimensionRadius.svg deleted file mode 100644 index 7929d0b146..0000000000 --- a/kindred-icons/Draft_DimensionRadius.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DR - diff --git a/kindred-icons/Draft_Dimension_Tree.svg b/kindred-icons/Draft_Dimension_Tree.svg deleted file mode 100644 index 650456728e..0000000000 --- a/kindred-icons/Draft_Dimension_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DT - diff --git a/kindred-icons/Draft_Dot.svg b/kindred-icons/Draft_Dot.svg deleted file mode 100644 index 987788187f..0000000000 --- a/kindred-icons/Draft_Dot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dot - diff --git a/kindred-icons/Draft_Downgrade.svg b/kindred-icons/Draft_Downgrade.svg deleted file mode 100644 index c8db65bab8..0000000000 --- a/kindred-icons/Draft_Downgrade.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Down - diff --git a/kindred-icons/Draft_Draft.svg b/kindred-icons/Draft_Draft.svg deleted file mode 100644 index f78f22b96b..0000000000 --- a/kindred-icons/Draft_Draft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Draf - diff --git a/kindred-icons/Draft_Draft2Sketch.svg b/kindred-icons/Draft_Draft2Sketch.svg deleted file mode 100644 index 833c735dd6..0000000000 --- a/kindred-icons/Draft_Draft2Sketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - D2S - diff --git a/kindred-icons/Draft_Edit.svg b/kindred-icons/Draft_Edit.svg deleted file mode 100644 index 25ff017e56..0000000000 --- a/kindred-icons/Draft_Edit.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Edit - diff --git a/kindred-icons/Draft_Ellipse.svg b/kindred-icons/Draft_Ellipse.svg deleted file mode 100644 index 11d9b79f03..0000000000 --- a/kindred-icons/Draft_Ellipse.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Elli - diff --git a/kindred-icons/Draft_Facebinder.svg b/kindred-icons/Draft_Facebinder.svg deleted file mode 100644 index 3c271c48d5..0000000000 --- a/kindred-icons/Draft_Facebinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Face - diff --git a/kindred-icons/Draft_Facebinder_Provider.svg b/kindred-icons/Draft_Facebinder_Provider.svg deleted file mode 100644 index 1b739d5774..0000000000 --- a/kindred-icons/Draft_Facebinder_Provider.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FP - diff --git a/kindred-icons/Draft_Fillet.svg b/kindred-icons/Draft_Fillet.svg deleted file mode 100644 index c9623dc33c..0000000000 --- a/kindred-icons/Draft_Fillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fill - diff --git a/kindred-icons/Draft_Finish.svg b/kindred-icons/Draft_Finish.svg deleted file mode 100644 index 6dd4cb3d26..0000000000 --- a/kindred-icons/Draft_Finish.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fini - diff --git a/kindred-icons/Draft_FlipDimension.svg b/kindred-icons/Draft_FlipDimension.svg deleted file mode 100644 index db00e2a271..0000000000 --- a/kindred-icons/Draft_FlipDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FD - diff --git a/kindred-icons/Draft_Grid.svg b/kindred-icons/Draft_Grid.svg deleted file mode 100644 index ed17f89c8f..0000000000 --- a/kindred-icons/Draft_Grid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Grid - diff --git a/kindred-icons/Draft_Hatch.svg b/kindred-icons/Draft_Hatch.svg deleted file mode 100644 index a0d05389aa..0000000000 --- a/kindred-icons/Draft_Hatch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Hatc - diff --git a/kindred-icons/Draft_Heal.svg b/kindred-icons/Draft_Heal.svg deleted file mode 100644 index dd77531e13..0000000000 --- a/kindred-icons/Draft_Heal.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Heal - diff --git a/kindred-icons/Draft_Join.svg b/kindred-icons/Draft_Join.svg deleted file mode 100644 index 2d0aebadcc..0000000000 --- a/kindred-icons/Draft_Join.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Join - diff --git a/kindred-icons/Draft_Label.svg b/kindred-icons/Draft_Label.svg deleted file mode 100644 index 1a4c0145e0..0000000000 --- a/kindred-icons/Draft_Label.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Labe - diff --git a/kindred-icons/Draft_Layer.svg b/kindred-icons/Draft_Layer.svg deleted file mode 100644 index ab1f1fb589..0000000000 --- a/kindred-icons/Draft_Layer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Laye - diff --git a/kindred-icons/Draft_LayerManager.svg b/kindred-icons/Draft_LayerManager.svg deleted file mode 100644 index dc9432a0ec..0000000000 --- a/kindred-icons/Draft_LayerManager.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LM - diff --git a/kindred-icons/Draft_Layers.svg b/kindred-icons/Draft_Layers.svg deleted file mode 100644 index ab1f1fb589..0000000000 --- a/kindred-icons/Draft_Layers.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Laye - diff --git a/kindred-icons/Draft_Line.svg b/kindred-icons/Draft_Line.svg deleted file mode 100644 index 730681176b..0000000000 --- a/kindred-icons/Draft_Line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Line - diff --git a/kindred-icons/Draft_LinkArray.svg b/kindred-icons/Draft_LinkArray.svg deleted file mode 100644 index 301b091a5c..0000000000 --- a/kindred-icons/Draft_LinkArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LA - diff --git a/kindred-icons/Draft_Lock.svg b/kindred-icons/Draft_Lock.svg deleted file mode 100644 index 36dca3441c..0000000000 --- a/kindred-icons/Draft_Lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Lock - diff --git a/kindred-icons/Draft_Macro.svg b/kindred-icons/Draft_Macro.svg deleted file mode 100644 index 2b45d1a0b3..0000000000 --- a/kindred-icons/Draft_Macro.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Macr - diff --git a/kindred-icons/Draft_Mirror.svg b/kindred-icons/Draft_Mirror.svg deleted file mode 100644 index f6784de7cb..0000000000 --- a/kindred-icons/Draft_Mirror.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mirr - diff --git a/kindred-icons/Draft_Move.svg b/kindred-icons/Draft_Move.svg deleted file mode 100644 index 34e612651e..0000000000 --- a/kindred-icons/Draft_Move.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Move - diff --git a/kindred-icons/Draft_N-Curve.svg b/kindred-icons/Draft_N-Curve.svg deleted file mode 100644 index 92553fbac3..0000000000 --- a/kindred-icons/Draft_N-Curve.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - NC - diff --git a/kindred-icons/Draft_N-Linear.svg b/kindred-icons/Draft_N-Linear.svg deleted file mode 100644 index 5a23a9b120..0000000000 --- a/kindred-icons/Draft_N-Linear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - NL - diff --git a/kindred-icons/Draft_N-Polygon.svg b/kindred-icons/Draft_N-Polygon.svg deleted file mode 100644 index 3e3202fc72..0000000000 --- a/kindred-icons/Draft_N-Polygon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - NP - diff --git a/kindred-icons/Draft_NewLayer.svg b/kindred-icons/Draft_NewLayer.svg deleted file mode 100644 index 5a23a9b120..0000000000 --- a/kindred-icons/Draft_NewLayer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - NL - diff --git a/kindred-icons/Draft_Offset.svg b/kindred-icons/Draft_Offset.svg deleted file mode 100644 index c1e9e7d9d2..0000000000 --- a/kindred-icons/Draft_Offset.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Offs - diff --git a/kindred-icons/Draft_PathArray.svg b/kindred-icons/Draft_PathArray.svg deleted file mode 100644 index 048f9ba1c3..0000000000 --- a/kindred-icons/Draft_PathArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PA - diff --git a/kindred-icons/Draft_PathLinkArray.svg b/kindred-icons/Draft_PathLinkArray.svg deleted file mode 100644 index b3c9c5fc34..0000000000 --- a/kindred-icons/Draft_PathLinkArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PLA - diff --git a/kindred-icons/Draft_PathTwistedArray.svg b/kindred-icons/Draft_PathTwistedArray.svg deleted file mode 100644 index 741d078a2b..0000000000 --- a/kindred-icons/Draft_PathTwistedArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PTA - diff --git a/kindred-icons/Draft_PathTwistedLinkArray.svg b/kindred-icons/Draft_PathTwistedLinkArray.svg deleted file mode 100644 index 27d07ca6dd..0000000000 --- a/kindred-icons/Draft_PathTwistedLinkArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PTLA - diff --git a/kindred-icons/Draft_PlaneProxy.svg b/kindred-icons/Draft_PlaneProxy.svg deleted file mode 100644 index 920e75881f..0000000000 --- a/kindred-icons/Draft_PlaneProxy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/Draft_Point.svg b/kindred-icons/Draft_Point.svg deleted file mode 100644 index 3de61f75a4..0000000000 --- a/kindred-icons/Draft_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Poin - diff --git a/kindred-icons/Draft_PointArray.svg b/kindred-icons/Draft_PointArray.svg deleted file mode 100644 index 048f9ba1c3..0000000000 --- a/kindred-icons/Draft_PointArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PA - diff --git a/kindred-icons/Draft_PointLinkArray.svg b/kindred-icons/Draft_PointLinkArray.svg deleted file mode 100644 index b3c9c5fc34..0000000000 --- a/kindred-icons/Draft_PointLinkArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PLA - diff --git a/kindred-icons/Draft_PolarArray.svg b/kindred-icons/Draft_PolarArray.svg deleted file mode 100644 index 048f9ba1c3..0000000000 --- a/kindred-icons/Draft_PolarArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PA - diff --git a/kindred-icons/Draft_PolarLinkArray.svg b/kindred-icons/Draft_PolarLinkArray.svg deleted file mode 100644 index b3c9c5fc34..0000000000 --- a/kindred-icons/Draft_PolarLinkArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PLA - diff --git a/kindred-icons/Draft_Polygon.svg b/kindred-icons/Draft_Polygon.svg deleted file mode 100644 index 92e348ae27..0000000000 --- a/kindred-icons/Draft_Polygon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Poly - diff --git a/kindred-icons/Draft_Rectangle.svg b/kindred-icons/Draft_Rectangle.svg deleted file mode 100644 index cd8468641e..0000000000 --- a/kindred-icons/Draft_Rectangle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Rect - diff --git a/kindred-icons/Draft_Rotate.svg b/kindred-icons/Draft_Rotate.svg deleted file mode 100644 index ad4aeb209f..0000000000 --- a/kindred-icons/Draft_Rotate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Rota - diff --git a/kindred-icons/Draft_Scale.svg b/kindred-icons/Draft_Scale.svg deleted file mode 100644 index 5bb57a65e5..0000000000 --- a/kindred-icons/Draft_Scale.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Scal - diff --git a/kindred-icons/Draft_SelectGroup.svg b/kindred-icons/Draft_SelectGroup.svg deleted file mode 100644 index d233cad5ff..0000000000 --- a/kindred-icons/Draft_SelectGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SG - diff --git a/kindred-icons/Draft_SelectPlane.svg b/kindred-icons/Draft_SelectPlane.svg deleted file mode 100644 index 373113dd2a..0000000000 --- a/kindred-icons/Draft_SelectPlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Draft_ShapeString.svg b/kindred-icons/Draft_ShapeString.svg deleted file mode 100644 index 488cdedf17..0000000000 --- a/kindred-icons/Draft_ShapeString.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SS - diff --git a/kindred-icons/Draft_ShapeString_tree.svg b/kindred-icons/Draft_ShapeString_tree.svg deleted file mode 100644 index c2d697e208..0000000000 --- a/kindred-icons/Draft_ShapeString_tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SST - diff --git a/kindred-icons/Draft_Slope.svg b/kindred-icons/Draft_Slope.svg deleted file mode 100644 index f0691537b0..0000000000 --- a/kindred-icons/Draft_Slope.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Slop - diff --git a/kindred-icons/Draft_Snap.svg b/kindred-icons/Draft_Snap.svg deleted file mode 100644 index bf2e3f18a7..0000000000 --- a/kindred-icons/Draft_Snap.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Snap - diff --git a/kindred-icons/Draft_Snap_Angle.svg b/kindred-icons/Draft_Snap_Angle.svg deleted file mode 100644 index 6a41df7c82..0000000000 --- a/kindred-icons/Draft_Snap_Angle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SA - diff --git a/kindred-icons/Draft_Snap_Center.svg b/kindred-icons/Draft_Snap_Center.svg deleted file mode 100644 index 434290d61a..0000000000 --- a/kindred-icons/Draft_Snap_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/Draft_Snap_Dimensions.svg b/kindred-icons/Draft_Snap_Dimensions.svg deleted file mode 100644 index 8626364679..0000000000 --- a/kindred-icons/Draft_Snap_Dimensions.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SD - diff --git a/kindred-icons/Draft_Snap_Endpoint.svg b/kindred-icons/Draft_Snap_Endpoint.svg deleted file mode 100644 index 6e55fdbf0d..0000000000 --- a/kindred-icons/Draft_Snap_Endpoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SE - diff --git a/kindred-icons/Draft_Snap_Extension.svg b/kindred-icons/Draft_Snap_Extension.svg deleted file mode 100644 index 6e55fdbf0d..0000000000 --- a/kindred-icons/Draft_Snap_Extension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SE - diff --git a/kindred-icons/Draft_Snap_Grid.svg b/kindred-icons/Draft_Snap_Grid.svg deleted file mode 100644 index d233cad5ff..0000000000 --- a/kindred-icons/Draft_Snap_Grid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SG - diff --git a/kindred-icons/Draft_Snap_Intersection.svg b/kindred-icons/Draft_Snap_Intersection.svg deleted file mode 100644 index 84977c03c1..0000000000 --- a/kindred-icons/Draft_Snap_Intersection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SI - diff --git a/kindred-icons/Draft_Snap_Lock.svg b/kindred-icons/Draft_Snap_Lock.svg deleted file mode 100644 index 9a4c3aa2b5..0000000000 --- a/kindred-icons/Draft_Snap_Lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SL - diff --git a/kindred-icons/Draft_Snap_Midpoint.svg b/kindred-icons/Draft_Snap_Midpoint.svg deleted file mode 100644 index 52cf9e76c3..0000000000 --- a/kindred-icons/Draft_Snap_Midpoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SM - diff --git a/kindred-icons/Draft_Snap_Near.svg b/kindred-icons/Draft_Snap_Near.svg deleted file mode 100644 index a8aec754bf..0000000000 --- a/kindred-icons/Draft_Snap_Near.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SN - diff --git a/kindred-icons/Draft_Snap_Ortho.svg b/kindred-icons/Draft_Snap_Ortho.svg deleted file mode 100644 index 463325d0c5..0000000000 --- a/kindred-icons/Draft_Snap_Ortho.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SO - diff --git a/kindred-icons/Draft_Snap_Parallel.svg b/kindred-icons/Draft_Snap_Parallel.svg deleted file mode 100644 index 373113dd2a..0000000000 --- a/kindred-icons/Draft_Snap_Parallel.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Draft_Snap_Perpendicular.svg b/kindred-icons/Draft_Snap_Perpendicular.svg deleted file mode 100644 index 373113dd2a..0000000000 --- a/kindred-icons/Draft_Snap_Perpendicular.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Draft_Snap_Recenter.svg b/kindred-icons/Draft_Snap_Recenter.svg deleted file mode 100644 index 19c42d87a5..0000000000 --- a/kindred-icons/Draft_Snap_Recenter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SR - diff --git a/kindred-icons/Draft_Snap_Special.svg b/kindred-icons/Draft_Snap_Special.svg deleted file mode 100644 index 488cdedf17..0000000000 --- a/kindred-icons/Draft_Snap_Special.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SS - diff --git a/kindred-icons/Draft_Snap_WorkingPlane.svg b/kindred-icons/Draft_Snap_WorkingPlane.svg deleted file mode 100644 index 36aa5fdd26..0000000000 --- a/kindred-icons/Draft_Snap_WorkingPlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SWP - diff --git a/kindred-icons/Draft_Split.svg b/kindred-icons/Draft_Split.svg deleted file mode 100644 index 3795fc3969..0000000000 --- a/kindred-icons/Draft_Split.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Spli - diff --git a/kindred-icons/Draft_Stretch.svg b/kindred-icons/Draft_Stretch.svg deleted file mode 100644 index 6867aafa62..0000000000 --- a/kindred-icons/Draft_Stretch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Stre - diff --git a/kindred-icons/Draft_SubelementHighlight.svg b/kindred-icons/Draft_SubelementHighlight.svg deleted file mode 100644 index 48ab6bc969..0000000000 --- a/kindred-icons/Draft_SubelementHighlight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SH - diff --git a/kindred-icons/Draft_SwitchMode.svg b/kindred-icons/Draft_SwitchMode.svg deleted file mode 100644 index 52cf9e76c3..0000000000 --- a/kindred-icons/Draft_SwitchMode.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SM - diff --git a/kindred-icons/Draft_Text.svg b/kindred-icons/Draft_Text.svg deleted file mode 100644 index 5fc82765f6..0000000000 --- a/kindred-icons/Draft_Text.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Text - diff --git a/kindred-icons/Draft_Trimex.svg b/kindred-icons/Draft_Trimex.svg deleted file mode 100644 index e12cd1f62e..0000000000 --- a/kindred-icons/Draft_Trimex.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Trim - diff --git a/kindred-icons/Draft_Upgrade.svg b/kindred-icons/Draft_Upgrade.svg deleted file mode 100644 index 2201c28f05..0000000000 --- a/kindred-icons/Draft_Upgrade.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Upgr - diff --git a/kindred-icons/Draft_VisGroup.svg b/kindred-icons/Draft_VisGroup.svg deleted file mode 100644 index 61492990e3..0000000000 --- a/kindred-icons/Draft_VisGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VG - diff --git a/kindred-icons/Draft_Wipe.svg b/kindred-icons/Draft_Wipe.svg deleted file mode 100644 index be8dab848a..0000000000 --- a/kindred-icons/Draft_Wipe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wipe - diff --git a/kindred-icons/Draft_Wire.svg b/kindred-icons/Draft_Wire.svg deleted file mode 100644 index 86cc2557b3..0000000000 --- a/kindred-icons/Draft_Wire.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wire - diff --git a/kindred-icons/Draft_WireToBSpline.svg b/kindred-icons/Draft_WireToBSpline.svg deleted file mode 100644 index 030695db46..0000000000 --- a/kindred-icons/Draft_WireToBSpline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WTBS - diff --git a/kindred-icons/DrawStyleAsIs.svg b/kindred-icons/DrawStyleAsIs.svg deleted file mode 100644 index b67d71a78c..0000000000 --- a/kindred-icons/DrawStyleAsIs.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/DrawStyleFlatLines.svg b/kindred-icons/DrawStyleFlatLines.svg deleted file mode 100644 index e6bca491f1..0000000000 --- a/kindred-icons/DrawStyleFlatLines.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/DrawStyleNoShading.svg b/kindred-icons/DrawStyleNoShading.svg deleted file mode 100644 index 47a26ca7fd..0000000000 --- a/kindred-icons/DrawStyleNoShading.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/DrawStylePoints.svg b/kindred-icons/DrawStylePoints.svg deleted file mode 100644 index 750f4f7393..0000000000 --- a/kindred-icons/DrawStylePoints.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/DrawStyleShaded.svg b/kindred-icons/DrawStyleShaded.svg deleted file mode 100644 index e1c4d3babd..0000000000 --- a/kindred-icons/DrawStyleShaded.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/DrawStyleWireFrame.svg b/kindred-icons/DrawStyleWireFrame.svg deleted file mode 100644 index d478206c93..0000000000 --- a/kindred-icons/DrawStyleWireFrame.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/FEM_Analysis.svg b/kindred-icons/FEM_Analysis.svg deleted file mode 100644 index 8bcc4be09b..0000000000 --- a/kindred-icons/FEM_Analysis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FEA - diff --git a/kindred-icons/FEM_ClippingPlaneAdd.svg b/kindred-icons/FEM_ClippingPlaneAdd.svg deleted file mode 100644 index 5f0cd2f574..0000000000 --- a/kindred-icons/FEM_ClippingPlaneAdd.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPA - diff --git a/kindred-icons/FEM_ClippingPlaneRemoveAll.svg b/kindred-icons/FEM_ClippingPlaneRemoveAll.svg deleted file mode 100644 index dff67dc05e..0000000000 --- a/kindred-icons/FEM_ClippingPlaneRemoveAll.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPRA - diff --git a/kindred-icons/FEM_ConstraintBearing.svg b/kindred-icons/FEM_ConstraintBearing.svg deleted file mode 100644 index 7309d61047..0000000000 --- a/kindred-icons/FEM_ConstraintBearing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CB - diff --git a/kindred-icons/FEM_ConstraintBodyHeatSource.svg b/kindred-icons/FEM_ConstraintBodyHeatSource.svg deleted file mode 100644 index 2e1a9df5ce..0000000000 --- a/kindred-icons/FEM_ConstraintBodyHeatSource.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CBHS - diff --git a/kindred-icons/FEM_ConstraintCentrif.svg b/kindred-icons/FEM_ConstraintCentrif.svg deleted file mode 100644 index c75126d413..0000000000 --- a/kindred-icons/FEM_ConstraintCentrif.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/FEM_ConstraintContact.svg b/kindred-icons/FEM_ConstraintContact.svg deleted file mode 100644 index c75126d413..0000000000 --- a/kindred-icons/FEM_ConstraintContact.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/FEM_ConstraintCurrentDensity.svg b/kindred-icons/FEM_ConstraintCurrentDensity.svg deleted file mode 100644 index 21ad1dcad8..0000000000 --- a/kindred-icons/FEM_ConstraintCurrentDensity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CCD - diff --git a/kindred-icons/FEM_ConstraintDisplacement.svg b/kindred-icons/FEM_ConstraintDisplacement.svg deleted file mode 100644 index 5eed6dfd1c..0000000000 --- a/kindred-icons/FEM_ConstraintDisplacement.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CD - diff --git a/kindred-icons/FEM_ConstraintElectricChargeDensity.svg b/kindred-icons/FEM_ConstraintElectricChargeDensity.svg deleted file mode 100644 index 60469e4f5a..0000000000 --- a/kindred-icons/FEM_ConstraintElectricChargeDensity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CECD - diff --git a/kindred-icons/FEM_ConstraintElectrostaticPotential.svg b/kindred-icons/FEM_ConstraintElectrostaticPotential.svg deleted file mode 100644 index 020edc4cb5..0000000000 --- a/kindred-icons/FEM_ConstraintElectrostaticPotential.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CEP - diff --git a/kindred-icons/FEM_ConstraintFixed.svg b/kindred-icons/FEM_ConstraintFixed.svg deleted file mode 100644 index 5b12802727..0000000000 --- a/kindred-icons/FEM_ConstraintFixed.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CF - diff --git a/kindred-icons/FEM_ConstraintFlowVelocity.svg b/kindred-icons/FEM_ConstraintFlowVelocity.svg deleted file mode 100644 index 7ba87409f9..0000000000 --- a/kindred-icons/FEM_ConstraintFlowVelocity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CFV - diff --git a/kindred-icons/FEM_ConstraintFluidBoundary.svg b/kindred-icons/FEM_ConstraintFluidBoundary.svg deleted file mode 100644 index e29ab05e8e..0000000000 --- a/kindred-icons/FEM_ConstraintFluidBoundary.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CFB - diff --git a/kindred-icons/FEM_ConstraintForce.svg b/kindred-icons/FEM_ConstraintForce.svg deleted file mode 100644 index 5b12802727..0000000000 --- a/kindred-icons/FEM_ConstraintForce.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CF - diff --git a/kindred-icons/FEM_ConstraintGear.svg b/kindred-icons/FEM_ConstraintGear.svg deleted file mode 100644 index c7a20ec71d..0000000000 --- a/kindred-icons/FEM_ConstraintGear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CG - diff --git a/kindred-icons/FEM_ConstraintHeatflux.svg b/kindred-icons/FEM_ConstraintHeatflux.svg deleted file mode 100644 index 023d8e1301..0000000000 --- a/kindred-icons/FEM_ConstraintHeatflux.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CH - diff --git a/kindred-icons/FEM_ConstraintInitialFlowVelocity.svg b/kindred-icons/FEM_ConstraintInitialFlowVelocity.svg deleted file mode 100644 index 30138e75a1..0000000000 --- a/kindred-icons/FEM_ConstraintInitialFlowVelocity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CIFV - diff --git a/kindred-icons/FEM_ConstraintInitialPressure.svg b/kindred-icons/FEM_ConstraintInitialPressure.svg deleted file mode 100644 index 1240804fc2..0000000000 --- a/kindred-icons/FEM_ConstraintInitialPressure.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CIP - diff --git a/kindred-icons/FEM_ConstraintInitialTemperature.svg b/kindred-icons/FEM_ConstraintInitialTemperature.svg deleted file mode 100644 index d9cfb4da4e..0000000000 --- a/kindred-icons/FEM_ConstraintInitialTemperature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CIT - diff --git a/kindred-icons/FEM_ConstraintMagnetization.svg b/kindred-icons/FEM_ConstraintMagnetization.svg deleted file mode 100644 index 4519106589..0000000000 --- a/kindred-icons/FEM_ConstraintMagnetization.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CM - diff --git a/kindred-icons/FEM_ConstraintPlaneRotation.svg b/kindred-icons/FEM_ConstraintPlaneRotation.svg deleted file mode 100644 index 81839fe407..0000000000 --- a/kindred-icons/FEM_ConstraintPlaneRotation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPR - diff --git a/kindred-icons/FEM_ConstraintPressure.svg b/kindred-icons/FEM_ConstraintPressure.svg deleted file mode 100644 index 13f91fbd26..0000000000 --- a/kindred-icons/FEM_ConstraintPressure.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/FEM_ConstraintPulley.svg b/kindred-icons/FEM_ConstraintPulley.svg deleted file mode 100644 index 13f91fbd26..0000000000 --- a/kindred-icons/FEM_ConstraintPulley.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/FEM_ConstraintRigidBody.svg b/kindred-icons/FEM_ConstraintRigidBody.svg deleted file mode 100644 index 5616ecfbb5..0000000000 --- a/kindred-icons/FEM_ConstraintRigidBody.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRB - diff --git a/kindred-icons/FEM_ConstraintSectionPrint.svg b/kindred-icons/FEM_ConstraintSectionPrint.svg deleted file mode 100644 index 50803e5086..0000000000 --- a/kindred-icons/FEM_ConstraintSectionPrint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CSP - diff --git a/kindred-icons/FEM_ConstraintSelfWeight.svg b/kindred-icons/FEM_ConstraintSelfWeight.svg deleted file mode 100644 index 2a4cead795..0000000000 --- a/kindred-icons/FEM_ConstraintSelfWeight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CSW - diff --git a/kindred-icons/FEM_ConstraintSpring.svg b/kindred-icons/FEM_ConstraintSpring.svg deleted file mode 100644 index 0e26bc6903..0000000000 --- a/kindred-icons/FEM_ConstraintSpring.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/FEM_ConstraintTemperature.svg b/kindred-icons/FEM_ConstraintTemperature.svg deleted file mode 100644 index 3d394de766..0000000000 --- a/kindred-icons/FEM_ConstraintTemperature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/FEM_ConstraintTie.svg b/kindred-icons/FEM_ConstraintTie.svg deleted file mode 100644 index 3d394de766..0000000000 --- a/kindred-icons/FEM_ConstraintTie.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/FEM_ConstraintTransform.svg b/kindred-icons/FEM_ConstraintTransform.svg deleted file mode 100644 index 3d394de766..0000000000 --- a/kindred-icons/FEM_ConstraintTransform.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/FEM_CreateElementsSet.svg b/kindred-icons/FEM_CreateElementsSet.svg deleted file mode 100644 index 030dd88cb5..0000000000 --- a/kindred-icons/FEM_CreateElementsSet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CES - diff --git a/kindred-icons/FEM_CreateNodesSet.svg b/kindred-icons/FEM_CreateNodesSet.svg deleted file mode 100644 index 8948f03d29..0000000000 --- a/kindred-icons/FEM_CreateNodesSet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CNS - diff --git a/kindred-icons/FEM_ElementFluid1D.svg b/kindred-icons/FEM_ElementFluid1D.svg deleted file mode 100644 index d54ea4bb29..0000000000 --- a/kindred-icons/FEM_ElementFluid1D.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EF1D - diff --git a/kindred-icons/FEM_ElementGeometry1D.svg b/kindred-icons/FEM_ElementGeometry1D.svg deleted file mode 100644 index 65b6464f26..0000000000 --- a/kindred-icons/FEM_ElementGeometry1D.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EG1D - diff --git a/kindred-icons/FEM_ElementGeometry2D.svg b/kindred-icons/FEM_ElementGeometry2D.svg deleted file mode 100644 index 27e65d624d..0000000000 --- a/kindred-icons/FEM_ElementGeometry2D.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EG2D - diff --git a/kindred-icons/FEM_ElementRotation1D.svg b/kindred-icons/FEM_ElementRotation1D.svg deleted file mode 100644 index 83a498e20c..0000000000 --- a/kindred-icons/FEM_ElementRotation1D.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ER1D - diff --git a/kindred-icons/FEM_EquationDeformation.svg b/kindred-icons/FEM_EquationDeformation.svg deleted file mode 100644 index 7a9ceb3f01..0000000000 --- a/kindred-icons/FEM_EquationDeformation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ED - diff --git a/kindred-icons/FEM_EquationElasticity.svg b/kindred-icons/FEM_EquationElasticity.svg deleted file mode 100644 index cdc66f5b55..0000000000 --- a/kindred-icons/FEM_EquationElasticity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EE - diff --git a/kindred-icons/FEM_EquationElectricforce.svg b/kindred-icons/FEM_EquationElectricforce.svg deleted file mode 100644 index cdc66f5b55..0000000000 --- a/kindred-icons/FEM_EquationElectricforce.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EE - diff --git a/kindred-icons/FEM_EquationElectrostatic.svg b/kindred-icons/FEM_EquationElectrostatic.svg deleted file mode 100644 index cdc66f5b55..0000000000 --- a/kindred-icons/FEM_EquationElectrostatic.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EE - diff --git a/kindred-icons/FEM_EquationFlow.svg b/kindred-icons/FEM_EquationFlow.svg deleted file mode 100644 index 7d05c68cb4..0000000000 --- a/kindred-icons/FEM_EquationFlow.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EF - diff --git a/kindred-icons/FEM_EquationFlux.svg b/kindred-icons/FEM_EquationFlux.svg deleted file mode 100644 index 7d05c68cb4..0000000000 --- a/kindred-icons/FEM_EquationFlux.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EF - diff --git a/kindred-icons/FEM_EquationHeat.svg b/kindred-icons/FEM_EquationHeat.svg deleted file mode 100644 index ab6c3ba367..0000000000 --- a/kindred-icons/FEM_EquationHeat.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EH - diff --git a/kindred-icons/FEM_EquationMagnetodynamic.svg b/kindred-icons/FEM_EquationMagnetodynamic.svg deleted file mode 100644 index f95b7dfe47..0000000000 --- a/kindred-icons/FEM_EquationMagnetodynamic.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EM - diff --git a/kindred-icons/FEM_EquationMagnetodynamic2D.svg b/kindred-icons/FEM_EquationMagnetodynamic2D.svg deleted file mode 100644 index f47741dfe0..0000000000 --- a/kindred-icons/FEM_EquationMagnetodynamic2D.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EM2D - diff --git a/kindred-icons/FEM_EquationStaticCurrent.svg b/kindred-icons/FEM_EquationStaticCurrent.svg deleted file mode 100644 index ec8468d2b5..0000000000 --- a/kindred-icons/FEM_EquationStaticCurrent.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ESC - diff --git a/kindred-icons/FEM_FEMMesh2Mesh.svg b/kindred-icons/FEM_FEMMesh2Mesh.svg deleted file mode 100644 index 935b3cbd4d..0000000000 --- a/kindred-icons/FEM_FEMMesh2Mesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FEMM - diff --git a/kindred-icons/FEM_MaterialFluid.svg b/kindred-icons/FEM_MaterialFluid.svg deleted file mode 100644 index 88f6f4f87e..0000000000 --- a/kindred-icons/FEM_MaterialFluid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MF - diff --git a/kindred-icons/FEM_MaterialMechanicalNonlinear.svg b/kindred-icons/FEM_MaterialMechanicalNonlinear.svg deleted file mode 100644 index 7e22d12ecf..0000000000 --- a/kindred-icons/FEM_MaterialMechanicalNonlinear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MMN - diff --git a/kindred-icons/FEM_MaterialReinforced.svg b/kindred-icons/FEM_MaterialReinforced.svg deleted file mode 100644 index dd2be26cb7..0000000000 --- a/kindred-icons/FEM_MaterialReinforced.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MR - diff --git a/kindred-icons/FEM_MaterialSolid.svg b/kindred-icons/FEM_MaterialSolid.svg deleted file mode 100644 index 864a122186..0000000000 --- a/kindred-icons/FEM_MaterialSolid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/FEM_MeshBoundaryLayer.svg b/kindred-icons/FEM_MeshBoundaryLayer.svg deleted file mode 100644 index de90df97c8..0000000000 --- a/kindred-icons/FEM_MeshBoundaryLayer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MBL - diff --git a/kindred-icons/FEM_MeshClear.svg b/kindred-icons/FEM_MeshClear.svg deleted file mode 100644 index 4a2426f26e..0000000000 --- a/kindred-icons/FEM_MeshClear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MC - diff --git a/kindred-icons/FEM_MeshDisplayInfo.svg b/kindred-icons/FEM_MeshDisplayInfo.svg deleted file mode 100644 index ad77fe9901..0000000000 --- a/kindred-icons/FEM_MeshDisplayInfo.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MDI - diff --git a/kindred-icons/FEM_MeshGmshFromShape.svg b/kindred-icons/FEM_MeshGmshFromShape.svg deleted file mode 100644 index b72f51d5ed..0000000000 --- a/kindred-icons/FEM_MeshGmshFromShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MGFS - diff --git a/kindred-icons/FEM_MeshGroup.svg b/kindred-icons/FEM_MeshGroup.svg deleted file mode 100644 index 164057fd25..0000000000 --- a/kindred-icons/FEM_MeshGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MG - diff --git a/kindred-icons/FEM_MeshNetgenFromShape.svg b/kindred-icons/FEM_MeshNetgenFromShape.svg deleted file mode 100644 index bc7b585188..0000000000 --- a/kindred-icons/FEM_MeshNetgenFromShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MNFS - diff --git a/kindred-icons/FEM_MeshRegion.svg b/kindred-icons/FEM_MeshRegion.svg deleted file mode 100644 index dd2be26cb7..0000000000 --- a/kindred-icons/FEM_MeshRegion.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MR - diff --git a/kindred-icons/FEM_MeshResult.svg b/kindred-icons/FEM_MeshResult.svg deleted file mode 100644 index dd2be26cb7..0000000000 --- a/kindred-icons/FEM_MeshResult.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MR - diff --git a/kindred-icons/FEM_PostBranchFilter.svg b/kindred-icons/FEM_PostBranchFilter.svg deleted file mode 100644 index c44392b6f6..0000000000 --- a/kindred-icons/FEM_PostBranchFilter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PBF - diff --git a/kindred-icons/FEM_PostField.svg b/kindred-icons/FEM_PostField.svg deleted file mode 100644 index b522adfff2..0000000000 --- a/kindred-icons/FEM_PostField.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PF - diff --git a/kindred-icons/FEM_PostFilterCalculator.svg b/kindred-icons/FEM_PostFilterCalculator.svg deleted file mode 100644 index e53cf9c2d3..0000000000 --- a/kindred-icons/FEM_PostFilterCalculator.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFC - diff --git a/kindred-icons/FEM_PostFilterClipRegion.svg b/kindred-icons/FEM_PostFilterClipRegion.svg deleted file mode 100644 index 106e4ea49b..0000000000 --- a/kindred-icons/FEM_PostFilterClipRegion.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFCR - diff --git a/kindred-icons/FEM_PostFilterClipScalar.svg b/kindred-icons/FEM_PostFilterClipScalar.svg deleted file mode 100644 index 680ddb0983..0000000000 --- a/kindred-icons/FEM_PostFilterClipScalar.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFCS - diff --git a/kindred-icons/FEM_PostFilterContours.svg b/kindred-icons/FEM_PostFilterContours.svg deleted file mode 100644 index e53cf9c2d3..0000000000 --- a/kindred-icons/FEM_PostFilterContours.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFC - diff --git a/kindred-icons/FEM_PostFilterCutFunction.svg b/kindred-icons/FEM_PostFilterCutFunction.svg deleted file mode 100644 index f4ebb88ebd..0000000000 --- a/kindred-icons/FEM_PostFilterCutFunction.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFCF - diff --git a/kindred-icons/FEM_PostFilterDataAlongLine.svg b/kindred-icons/FEM_PostFilterDataAlongLine.svg deleted file mode 100644 index cd998d6c73..0000000000 --- a/kindred-icons/FEM_PostFilterDataAlongLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFDA - diff --git a/kindred-icons/FEM_PostFilterDataAtPoint.svg b/kindred-icons/FEM_PostFilterDataAtPoint.svg deleted file mode 100644 index cd998d6c73..0000000000 --- a/kindred-icons/FEM_PostFilterDataAtPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFDA - diff --git a/kindred-icons/FEM_PostFilterGlyph.svg b/kindred-icons/FEM_PostFilterGlyph.svg deleted file mode 100644 index 609dd33592..0000000000 --- a/kindred-icons/FEM_PostFilterGlyph.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFG - diff --git a/kindred-icons/FEM_PostFilterLinearizedStresses.svg b/kindred-icons/FEM_PostFilterLinearizedStresses.svg deleted file mode 100644 index 52c1047608..0000000000 --- a/kindred-icons/FEM_PostFilterLinearizedStresses.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFLS - diff --git a/kindred-icons/FEM_PostFilterWarp.svg b/kindred-icons/FEM_PostFilterWarp.svg deleted file mode 100644 index 2cd99ae456..0000000000 --- a/kindred-icons/FEM_PostFilterWarp.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFW - diff --git a/kindred-icons/FEM_PostFrames.svg b/kindred-icons/FEM_PostFrames.svg deleted file mode 100644 index b522adfff2..0000000000 --- a/kindred-icons/FEM_PostFrames.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PF - diff --git a/kindred-icons/FEM_PostHistogram.svg b/kindred-icons/FEM_PostHistogram.svg deleted file mode 100644 index 7a7ca72dd7..0000000000 --- a/kindred-icons/FEM_PostHistogram.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PH - diff --git a/kindred-icons/FEM_PostIndex.svg b/kindred-icons/FEM_PostIndex.svg deleted file mode 100644 index e8c135eb00..0000000000 --- a/kindred-icons/FEM_PostIndex.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PI - diff --git a/kindred-icons/FEM_PostLineplot.svg b/kindred-icons/FEM_PostLineplot.svg deleted file mode 100644 index 911d6e8623..0000000000 --- a/kindred-icons/FEM_PostLineplot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PL - diff --git a/kindred-icons/FEM_PostPipelineFromResult.svg b/kindred-icons/FEM_PostPipelineFromResult.svg deleted file mode 100644 index 2f371b27cc..0000000000 --- a/kindred-icons/FEM_PostPipelineFromResult.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PPFR - diff --git a/kindred-icons/FEM_PostSpreadsheet.svg b/kindred-icons/FEM_PostSpreadsheet.svg deleted file mode 100644 index 70d1d9efe0..0000000000 --- a/kindred-icons/FEM_PostSpreadsheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PS - diff --git a/kindred-icons/FEM_ResultShow.svg b/kindred-icons/FEM_ResultShow.svg deleted file mode 100644 index 4da2221917..0000000000 --- a/kindred-icons/FEM_ResultShow.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/FEM_ResultsPurge.svg b/kindred-icons/FEM_ResultsPurge.svg deleted file mode 100644 index 4a9910287f..0000000000 --- a/kindred-icons/FEM_ResultsPurge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RP - diff --git a/kindred-icons/FEM_SolverControl.svg b/kindred-icons/FEM_SolverControl.svg deleted file mode 100644 index 3bdbc166d9..0000000000 --- a/kindred-icons/FEM_SolverControl.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/FEM_SolverElmer.svg b/kindred-icons/FEM_SolverElmer.svg deleted file mode 100644 index 5475fc47dc..0000000000 --- a/kindred-icons/FEM_SolverElmer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SE - diff --git a/kindred-icons/FEM_SolverMystran.svg b/kindred-icons/FEM_SolverMystran.svg deleted file mode 100644 index ab6bee4a5c..0000000000 --- a/kindred-icons/FEM_SolverMystran.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SM - diff --git a/kindred-icons/FEM_SolverRun.svg b/kindred-icons/FEM_SolverRun.svg deleted file mode 100644 index 58fefb3cab..0000000000 --- a/kindred-icons/FEM_SolverRun.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SR - diff --git a/kindred-icons/FEM_SolverStandard.svg b/kindred-icons/FEM_SolverStandard.svg deleted file mode 100644 index bad76160d5..0000000000 --- a/kindred-icons/FEM_SolverStandard.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SS - diff --git a/kindred-icons/FEM_SolverZ88.svg b/kindred-icons/FEM_SolverZ88.svg deleted file mode 100644 index f6187c0778..0000000000 --- a/kindred-icons/FEM_SolverZ88.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SZ8 - diff --git a/kindred-icons/Feature.svg b/kindred-icons/Feature.svg deleted file mode 100644 index d8c589b495..0000000000 --- a/kindred-icons/Feature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/FemWorkbench.svg b/kindred-icons/FemWorkbench.svg deleted file mode 100644 index 01fb06400a..0000000000 --- a/kindred-icons/FemWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FW - diff --git a/kindred-icons/FitSurface.svg b/kindred-icons/FitSurface.svg deleted file mode 100644 index a3182fd28f..0000000000 --- a/kindred-icons/FitSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FS - diff --git a/kindred-icons/Geoassembly.svg b/kindred-icons/Geoassembly.svg deleted file mode 100644 index 9ffe314d4c..0000000000 --- a/kindred-icons/Geoassembly.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/Geofeaturegroup.svg b/kindred-icons/Geofeaturegroup.svg deleted file mode 100644 index a799c83ea8..0000000000 --- a/kindred-icons/Geofeaturegroup.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Git.svg b/kindred-icons/Git.svg deleted file mode 100644 index 14625f9c77..0000000000 --- a/kindred-icons/Git.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Git - diff --git a/kindred-icons/Group.svg b/kindred-icons/Group.svg deleted file mode 100644 index 141f1147e9..0000000000 --- a/kindred-icons/Group.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/IFC.svg b/kindred-icons/IFC.svg deleted file mode 100644 index 0cd975d988..0000000000 --- a/kindred-icons/IFC.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/IFC_document.svg b/kindred-icons/IFC_document.svg deleted file mode 100644 index 296a0a8ad9..0000000000 --- a/kindred-icons/IFC_document.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - docu - diff --git a/kindred-icons/IFC_mesh.svg b/kindred-icons/IFC_mesh.svg deleted file mode 100644 index bb5542401a..0000000000 --- a/kindred-icons/IFC_mesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - mesh - diff --git a/kindred-icons/IFC_object.svg b/kindred-icons/IFC_object.svg deleted file mode 100644 index dc7bdebc77..0000000000 --- a/kindred-icons/IFC_object.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - obje - diff --git a/kindred-icons/IfcBeam.svg b/kindred-icons/IfcBeam.svg deleted file mode 100644 index f74cc59393..0000000000 --- a/kindred-icons/IfcBeam.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Beam - diff --git a/kindred-icons/IfcBuilding.svg b/kindred-icons/IfcBuilding.svg deleted file mode 100644 index 3a8a365ab2..0000000000 --- a/kindred-icons/IfcBuilding.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Buil - diff --git a/kindred-icons/IfcBuildingStorey.svg b/kindred-icons/IfcBuildingStorey.svg deleted file mode 100644 index a7a9861ff2..0000000000 --- a/kindred-icons/IfcBuildingStorey.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BS - diff --git a/kindred-icons/IfcColumn.svg b/kindred-icons/IfcColumn.svg deleted file mode 100644 index adcc2a7263..0000000000 --- a/kindred-icons/IfcColumn.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Colu - diff --git a/kindred-icons/IfcCovering.svg b/kindred-icons/IfcCovering.svg deleted file mode 100644 index 9ddcd45255..0000000000 --- a/kindred-icons/IfcCovering.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cove - diff --git a/kindred-icons/IfcDoor.svg b/kindred-icons/IfcDoor.svg deleted file mode 100644 index 4ed24b4505..0000000000 --- a/kindred-icons/IfcDoor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Door - diff --git a/kindred-icons/IfcFooting.svg b/kindred-icons/IfcFooting.svg deleted file mode 100644 index d5e8bc4ca4..0000000000 --- a/kindred-icons/IfcFooting.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Foot - diff --git a/kindred-icons/IfcMember.svg b/kindred-icons/IfcMember.svg deleted file mode 100644 index 3db85df035..0000000000 --- a/kindred-icons/IfcMember.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Memb - diff --git a/kindred-icons/IfcPile.svg b/kindred-icons/IfcPile.svg deleted file mode 100644 index 0f4fda0913..0000000000 --- a/kindred-icons/IfcPile.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Pile - diff --git a/kindred-icons/IfcPlate.svg b/kindred-icons/IfcPlate.svg deleted file mode 100644 index 1077f05602..0000000000 --- a/kindred-icons/IfcPlate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Plat - diff --git a/kindred-icons/IfcRailing.svg b/kindred-icons/IfcRailing.svg deleted file mode 100644 index b4c91902a5..0000000000 --- a/kindred-icons/IfcRailing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Rail - diff --git a/kindred-icons/IfcRamp.svg b/kindred-icons/IfcRamp.svg deleted file mode 100644 index 0317426345..0000000000 --- a/kindred-icons/IfcRamp.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Ramp - diff --git a/kindred-icons/IfcRoof.svg b/kindred-icons/IfcRoof.svg deleted file mode 100644 index 50c85f8415..0000000000 --- a/kindred-icons/IfcRoof.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Roof - diff --git a/kindred-icons/IfcSite.svg b/kindred-icons/IfcSite.svg deleted file mode 100644 index 6bea1d9858..0000000000 --- a/kindred-icons/IfcSite.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Site - diff --git a/kindred-icons/IfcSlab.svg b/kindred-icons/IfcSlab.svg deleted file mode 100644 index c84964fc43..0000000000 --- a/kindred-icons/IfcSlab.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Slab - diff --git a/kindred-icons/IfcStair.svg b/kindred-icons/IfcStair.svg deleted file mode 100644 index 8ce26fe177..0000000000 --- a/kindred-icons/IfcStair.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Stai - diff --git a/kindred-icons/IfcWall.svg b/kindred-icons/IfcWall.svg deleted file mode 100644 index 3e4a3c7777..0000000000 --- a/kindred-icons/IfcWall.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wall - diff --git a/kindred-icons/IfcWindow.svg b/kindred-icons/IfcWindow.svg deleted file mode 100644 index 8cf8fd51e2..0000000000 --- a/kindred-icons/IfcWindow.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Wind - diff --git a/kindred-icons/InTray.svg b/kindred-icons/InTray.svg deleted file mode 100644 index 883738264f..0000000000 --- a/kindred-icons/InTray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/InTray_missed_notifications.svg b/kindred-icons/InTray_missed_notifications.svg deleted file mode 100644 index 78bb42346f..0000000000 --- a/kindred-icons/InTray_missed_notifications.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - ! - diff --git a/kindred-icons/InspectionWorkbench.svg b/kindred-icons/InspectionWorkbench.svg deleted file mode 100644 index 0d67d3a12b..0000000000 --- a/kindred-icons/InspectionWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IW - diff --git a/kindred-icons/Invisible.svg b/kindred-icons/Invisible.svg deleted file mode 100644 index abf4737be6..0000000000 --- a/kindred-icons/Invisible.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/Link.svg b/kindred-icons/Link.svg deleted file mode 100644 index 77a4b9ebef..0000000000 --- a/kindred-icons/Link.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/LinkArray.svg b/kindred-icons/LinkArray.svg deleted file mode 100644 index 987170c120..0000000000 --- a/kindred-icons/LinkArray.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/LinkArrayOverlay.svg b/kindred-icons/LinkArrayOverlay.svg deleted file mode 100644 index 1a9201f597..0000000000 --- a/kindred-icons/LinkArrayOverlay.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/LinkElement.svg b/kindred-icons/LinkElement.svg deleted file mode 100644 index 31064f43db..0000000000 --- a/kindred-icons/LinkElement.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - diff --git a/kindred-icons/LinkGroup.svg b/kindred-icons/LinkGroup.svg deleted file mode 100644 index 71c27150bd..0000000000 --- a/kindred-icons/LinkGroup.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/LinkImport.svg b/kindred-icons/LinkImport.svg deleted file mode 100644 index c6caf0ba12..0000000000 --- a/kindred-icons/LinkImport.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/LinkImportAll.svg b/kindred-icons/LinkImportAll.svg deleted file mode 100644 index 05a4ba84b9..0000000000 --- a/kindred-icons/LinkImportAll.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/LinkOverlay.svg b/kindred-icons/LinkOverlay.svg deleted file mode 100644 index 17ab097d54..0000000000 --- a/kindred-icons/LinkOverlay.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - diff --git a/kindred-icons/LinkReplace.svg b/kindred-icons/LinkReplace.svg deleted file mode 100644 index 0ebb0a68ab..0000000000 --- a/kindred-icons/LinkReplace.svg +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/LinkSelect.svg b/kindred-icons/LinkSelect.svg deleted file mode 100644 index 85f2be57a6..0000000000 --- a/kindred-icons/LinkSelect.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/MaterialWorkbench.svg b/kindred-icons/MaterialWorkbench.svg deleted file mode 100644 index 45882b151b..0000000000 --- a/kindred-icons/MaterialWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MW - diff --git a/kindred-icons/Material_Edit.svg b/kindred-icons/Material_Edit.svg deleted file mode 100644 index 0919b35712..0000000000 --- a/kindred-icons/Material_Edit.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Edit - diff --git a/kindred-icons/Measurement-Angle.svg b/kindred-icons/Measurement-Angle.svg deleted file mode 100644 index f328a1bea0..0000000000 --- a/kindred-icons/Measurement-Angle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Angl - diff --git a/kindred-icons/Measurement-Area.svg b/kindred-icons/Measurement-Area.svg deleted file mode 100644 index fe2b4f411d..0000000000 --- a/kindred-icons/Measurement-Area.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Area - diff --git a/kindred-icons/Measurement-CenterOfMass.svg b/kindred-icons/Measurement-CenterOfMass.svg deleted file mode 100644 index dfac5f4d6d..0000000000 --- a/kindred-icons/Measurement-CenterOfMass.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - COM - diff --git a/kindred-icons/Measurement-Diameter.svg b/kindred-icons/Measurement-Diameter.svg deleted file mode 100644 index 5df3cbd2ce..0000000000 --- a/kindred-icons/Measurement-Diameter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Diam - diff --git a/kindred-icons/Measurement-Distance.svg b/kindred-icons/Measurement-Distance.svg deleted file mode 100644 index 9f679f75fd..0000000000 --- a/kindred-icons/Measurement-Distance.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dist - diff --git a/kindred-icons/Measurement-Group.svg b/kindred-icons/Measurement-Group.svg deleted file mode 100644 index 944b26ef8c..0000000000 --- a/kindred-icons/Measurement-Group.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Grou - diff --git a/kindred-icons/Measurement-Inertia.svg b/kindred-icons/Measurement-Inertia.svg deleted file mode 100644 index 20a66b83a9..0000000000 --- a/kindred-icons/Measurement-Inertia.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Iner - diff --git a/kindred-icons/Measurement-Position.svg b/kindred-icons/Measurement-Position.svg deleted file mode 100644 index 1ad171086a..0000000000 --- a/kindred-icons/Measurement-Position.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Posi - diff --git a/kindred-icons/Measurement-Radius.svg b/kindred-icons/Measurement-Radius.svg deleted file mode 100644 index 86d8008e7e..0000000000 --- a/kindred-icons/Measurement-Radius.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Radi - diff --git a/kindred-icons/Measurement-Volume.svg b/kindred-icons/Measurement-Volume.svg deleted file mode 100644 index 270429ba39..0000000000 --- a/kindred-icons/Measurement-Volume.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Volu - diff --git a/kindred-icons/MeshFace.svg b/kindred-icons/MeshFace.svg deleted file mode 100644 index 13a45c9a20..0000000000 --- a/kindred-icons/MeshFace.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MF - diff --git a/kindred-icons/MeshPart_CreateFlatFace.svg b/kindred-icons/MeshPart_CreateFlatFace.svg deleted file mode 100644 index 4dd120b937..0000000000 --- a/kindred-icons/MeshPart_CreateFlatFace.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CFF - diff --git a/kindred-icons/MeshPart_CreateFlatMesh.svg b/kindred-icons/MeshPart_CreateFlatMesh.svg deleted file mode 100644 index 583e315cf4..0000000000 --- a/kindred-icons/MeshPart_CreateFlatMesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CFM - diff --git a/kindred-icons/MeshPart_CurveOnMesh.svg b/kindred-icons/MeshPart_CurveOnMesh.svg deleted file mode 100644 index 44e16efd85..0000000000 --- a/kindred-icons/MeshPart_CurveOnMesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - COM - diff --git a/kindred-icons/MeshWorkbench.svg b/kindred-icons/MeshWorkbench.svg deleted file mode 100644 index dd018f0f06..0000000000 --- a/kindred-icons/MeshWorkbench.svg +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/kindred-icons/Mesh_AddFacet.svg b/kindred-icons/Mesh_AddFacet.svg deleted file mode 100644 index 6fbd0e6d38..0000000000 --- a/kindred-icons/Mesh_AddFacet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AF - diff --git a/kindred-icons/Mesh_BoundingBox.svg b/kindred-icons/Mesh_BoundingBox.svg deleted file mode 100644 index 76d7c36b86..0000000000 --- a/kindred-icons/Mesh_BoundingBox.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BB - diff --git a/kindred-icons/Mesh_BuildRegularSolid.svg b/kindred-icons/Mesh_BuildRegularSolid.svg deleted file mode 100644 index 734f8f250c..0000000000 --- a/kindred-icons/Mesh_BuildRegularSolid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BRS - diff --git a/kindred-icons/Mesh_Cone.svg b/kindred-icons/Mesh_Cone.svg deleted file mode 100644 index 48dfe252b9..0000000000 --- a/kindred-icons/Mesh_Cone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cone - diff --git a/kindred-icons/Mesh_CrossSections.svg b/kindred-icons/Mesh_CrossSections.svg deleted file mode 100644 index ae1ebe6753..0000000000 --- a/kindred-icons/Mesh_CrossSections.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/Mesh_Cube.svg b/kindred-icons/Mesh_Cube.svg deleted file mode 100644 index 2989741bee..0000000000 --- a/kindred-icons/Mesh_Cube.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cube - diff --git a/kindred-icons/Mesh_CursorFillInteractive.svg b/kindred-icons/Mesh_CursorFillInteractive.svg deleted file mode 100644 index 6df0861fb0..0000000000 --- a/kindred-icons/Mesh_CursorFillInteractive.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CFI - diff --git a/kindred-icons/Mesh_CurvatureInfo.svg b/kindred-icons/Mesh_CurvatureInfo.svg deleted file mode 100644 index 6232d13db2..0000000000 --- a/kindred-icons/Mesh_CurvatureInfo.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CI - diff --git a/kindred-icons/Mesh_Cylinder.svg b/kindred-icons/Mesh_Cylinder.svg deleted file mode 100644 index dae229ec98..0000000000 --- a/kindred-icons/Mesh_Cylinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cyli - diff --git a/kindred-icons/Mesh_Decimating.svg b/kindred-icons/Mesh_Decimating.svg deleted file mode 100644 index 674311c53e..0000000000 --- a/kindred-icons/Mesh_Decimating.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Deci - diff --git a/kindred-icons/Mesh_Difference.svg b/kindred-icons/Mesh_Difference.svg deleted file mode 100644 index f73f45c2a9..0000000000 --- a/kindred-icons/Mesh_Difference.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Diff - diff --git a/kindred-icons/Mesh_Ellipsoid.svg b/kindred-icons/Mesh_Ellipsoid.svg deleted file mode 100644 index 8aaf3f7528..0000000000 --- a/kindred-icons/Mesh_Ellipsoid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Elli - diff --git a/kindred-icons/Mesh_EvaluateFacet.svg b/kindred-icons/Mesh_EvaluateFacet.svg deleted file mode 100644 index b90f10ef81..0000000000 --- a/kindred-icons/Mesh_EvaluateFacet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EF - diff --git a/kindred-icons/Mesh_EvaluateSolid.svg b/kindred-icons/Mesh_EvaluateSolid.svg deleted file mode 100644 index b43d482f3e..0000000000 --- a/kindred-icons/Mesh_EvaluateSolid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ES - diff --git a/kindred-icons/Mesh_Evaluation.svg b/kindred-icons/Mesh_Evaluation.svg deleted file mode 100644 index a001fbb911..0000000000 --- a/kindred-icons/Mesh_Evaluation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Eval - diff --git a/kindred-icons/Mesh_Export.svg b/kindred-icons/Mesh_Export.svg deleted file mode 100644 index 506bdb91f5..0000000000 --- a/kindred-icons/Mesh_Export.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Expo - diff --git a/kindred-icons/Mesh_FillInteractiveHole.svg b/kindred-icons/Mesh_FillInteractiveHole.svg deleted file mode 100644 index 6e2deb0114..0000000000 --- a/kindred-icons/Mesh_FillInteractiveHole.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FIH - diff --git a/kindred-icons/Mesh_FillupHoles.svg b/kindred-icons/Mesh_FillupHoles.svg deleted file mode 100644 index c6d2718373..0000000000 --- a/kindred-icons/Mesh_FillupHoles.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FH - diff --git a/kindred-icons/Mesh_FlipNormals.svg b/kindred-icons/Mesh_FlipNormals.svg deleted file mode 100644 index fc40ee23f9..0000000000 --- a/kindred-icons/Mesh_FlipNormals.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FN - diff --git a/kindred-icons/Mesh_FromPartShape.svg b/kindred-icons/Mesh_FromPartShape.svg deleted file mode 100644 index 6d1145151e..0000000000 --- a/kindred-icons/Mesh_FromPartShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FPS - diff --git a/kindred-icons/Mesh_HarmonizeNormals.svg b/kindred-icons/Mesh_HarmonizeNormals.svg deleted file mode 100644 index bb66380290..0000000000 --- a/kindred-icons/Mesh_HarmonizeNormals.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HN - diff --git a/kindred-icons/Mesh_Import.svg b/kindred-icons/Mesh_Import.svg deleted file mode 100644 index 3c3eb498af..0000000000 --- a/kindred-icons/Mesh_Import.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Impo - diff --git a/kindred-icons/Mesh_Intersection.svg b/kindred-icons/Mesh_Intersection.svg deleted file mode 100644 index 0371b46e2b..0000000000 --- a/kindred-icons/Mesh_Intersection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Inte - diff --git a/kindred-icons/Mesh_Merge.svg b/kindred-icons/Mesh_Merge.svg deleted file mode 100644 index 3b5ee9311b..0000000000 --- a/kindred-icons/Mesh_Merge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Merg - diff --git a/kindred-icons/Mesh_Pipette.svg b/kindred-icons/Mesh_Pipette.svg deleted file mode 100644 index 262b7bb9b4..0000000000 --- a/kindred-icons/Mesh_Pipette.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Pipe - diff --git a/kindred-icons/Mesh_PolyCut.svg b/kindred-icons/Mesh_PolyCut.svg deleted file mode 100644 index 9afa54389e..0000000000 --- a/kindred-icons/Mesh_PolyCut.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC - diff --git a/kindred-icons/Mesh_PolyTrim.svg b/kindred-icons/Mesh_PolyTrim.svg deleted file mode 100644 index 928ff59070..0000000000 --- a/kindred-icons/Mesh_PolyTrim.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Mesh_RemeshGmsh.svg b/kindred-icons/Mesh_RemeshGmsh.svg deleted file mode 100644 index d239f5d6ee..0000000000 --- a/kindred-icons/Mesh_RemeshGmsh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RG - diff --git a/kindred-icons/Mesh_RemoveCompByHand.svg b/kindred-icons/Mesh_RemoveCompByHand.svg deleted file mode 100644 index 435ecb9595..0000000000 --- a/kindred-icons/Mesh_RemoveCompByHand.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RCBH - diff --git a/kindred-icons/Mesh_RemoveComponents.svg b/kindred-icons/Mesh_RemoveComponents.svg deleted file mode 100644 index 8a0981e4b9..0000000000 --- a/kindred-icons/Mesh_RemoveComponents.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RC - diff --git a/kindred-icons/Mesh_Scale.svg b/kindred-icons/Mesh_Scale.svg deleted file mode 100644 index f5a441bca0..0000000000 --- a/kindred-icons/Mesh_Scale.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Scal - diff --git a/kindred-icons/Mesh_SectionByPlane.svg b/kindred-icons/Mesh_SectionByPlane.svg deleted file mode 100644 index b23bb3bd11..0000000000 --- a/kindred-icons/Mesh_SectionByPlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SBP - diff --git a/kindred-icons/Mesh_Segmentation.svg b/kindred-icons/Mesh_Segmentation.svg deleted file mode 100644 index 666c0c9bec..0000000000 --- a/kindred-icons/Mesh_Segmentation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Segm - diff --git a/kindred-icons/Mesh_SegmentationBestFit.svg b/kindred-icons/Mesh_SegmentationBestFit.svg deleted file mode 100644 index 4213904afa..0000000000 --- a/kindred-icons/Mesh_SegmentationBestFit.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SBF - diff --git a/kindred-icons/Mesh_Smoothing.svg b/kindred-icons/Mesh_Smoothing.svg deleted file mode 100644 index 8f3ac84246..0000000000 --- a/kindred-icons/Mesh_Smoothing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Smoo - diff --git a/kindred-icons/Mesh_Sphere.svg b/kindred-icons/Mesh_Sphere.svg deleted file mode 100644 index 90f0c512bc..0000000000 --- a/kindred-icons/Mesh_Sphere.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sphe - diff --git a/kindred-icons/Mesh_SplitComponents.svg b/kindred-icons/Mesh_SplitComponents.svg deleted file mode 100644 index 2e420fd57b..0000000000 --- a/kindred-icons/Mesh_SplitComponents.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/Mesh_Torus.svg b/kindred-icons/Mesh_Torus.svg deleted file mode 100644 index b531041fdd..0000000000 --- a/kindred-icons/Mesh_Torus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Toru - diff --git a/kindred-icons/Mesh_Tree.svg b/kindred-icons/Mesh_Tree.svg deleted file mode 100644 index cd77e2a485..0000000000 --- a/kindred-icons/Mesh_Tree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tree - diff --git a/kindred-icons/Mesh_Tree_Curvature_Plot.svg b/kindred-icons/Mesh_Tree_Curvature_Plot.svg deleted file mode 100644 index dbd0156c8f..0000000000 --- a/kindred-icons/Mesh_Tree_Curvature_Plot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCP - diff --git a/kindred-icons/Mesh_TrimByPlane.svg b/kindred-icons/Mesh_TrimByPlane.svg deleted file mode 100644 index dc4caf1e16..0000000000 --- a/kindred-icons/Mesh_TrimByPlane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TBP - diff --git a/kindred-icons/Mesh_Union.svg b/kindred-icons/Mesh_Union.svg deleted file mode 100644 index 2d2503ef6a..0000000000 --- a/kindred-icons/Mesh_Union.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Unio - diff --git a/kindred-icons/Mesh_VertexCurvature.svg b/kindred-icons/Mesh_VertexCurvature.svg deleted file mode 100644 index 7941e5648c..0000000000 --- a/kindred-icons/Mesh_VertexCurvature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VC - diff --git a/kindred-icons/NavigationBlender_dark.svg b/kindred-icons/NavigationBlender_dark.svg deleted file mode 100644 index 7e16348478..0000000000 --- a/kindred-icons/NavigationBlender_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BD - diff --git a/kindred-icons/NavigationBlender_light.svg b/kindred-icons/NavigationBlender_light.svg deleted file mode 100644 index 1d6bb8129c..0000000000 --- a/kindred-icons/NavigationBlender_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BL - diff --git a/kindred-icons/NavigationCAD_dark.svg b/kindred-icons/NavigationCAD_dark.svg deleted file mode 100644 index 9546902102..0000000000 --- a/kindred-icons/NavigationCAD_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CADD - diff --git a/kindred-icons/NavigationCAD_light.svg b/kindred-icons/NavigationCAD_light.svg deleted file mode 100644 index c37b065b96..0000000000 --- a/kindred-icons/NavigationCAD_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CADL - diff --git a/kindred-icons/NavigationGesture_dark.svg b/kindred-icons/NavigationGesture_dark.svg deleted file mode 100644 index bc593c71c0..0000000000 --- a/kindred-icons/NavigationGesture_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GD - diff --git a/kindred-icons/NavigationGesture_light.svg b/kindred-icons/NavigationGesture_light.svg deleted file mode 100644 index 1b941f5cc5..0000000000 --- a/kindred-icons/NavigationGesture_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GL - diff --git a/kindred-icons/NavigationMayaGesture_dark.svg b/kindred-icons/NavigationMayaGesture_dark.svg deleted file mode 100644 index 0479b088b2..0000000000 --- a/kindred-icons/NavigationMayaGesture_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MGD - diff --git a/kindred-icons/NavigationMayaGesture_light.svg b/kindred-icons/NavigationMayaGesture_light.svg deleted file mode 100644 index df7e41625a..0000000000 --- a/kindred-icons/NavigationMayaGesture_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MGL - diff --git a/kindred-icons/NavigationOpenCascade_dark.svg b/kindred-icons/NavigationOpenCascade_dark.svg deleted file mode 100644 index 7fe597b956..0000000000 --- a/kindred-icons/NavigationOpenCascade_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OCD - diff --git a/kindred-icons/NavigationOpenCascade_light.svg b/kindred-icons/NavigationOpenCascade_light.svg deleted file mode 100644 index bd40108f41..0000000000 --- a/kindred-icons/NavigationOpenCascade_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OCL - diff --git a/kindred-icons/NavigationOpenInventor_dark.svg b/kindred-icons/NavigationOpenInventor_dark.svg deleted file mode 100644 index 8b87e94b06..0000000000 --- a/kindred-icons/NavigationOpenInventor_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OID - diff --git a/kindred-icons/NavigationOpenInventor_light.svg b/kindred-icons/NavigationOpenInventor_light.svg deleted file mode 100644 index 06e570b0df..0000000000 --- a/kindred-icons/NavigationOpenInventor_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OIL - diff --git a/kindred-icons/NavigationOpenSCAD_dark.svg b/kindred-icons/NavigationOpenSCAD_dark.svg deleted file mode 100644 index dd78fc1ae9..0000000000 --- a/kindred-icons/NavigationOpenSCAD_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OSCA - diff --git a/kindred-icons/NavigationOpenSCAD_light.svg b/kindred-icons/NavigationOpenSCAD_light.svg deleted file mode 100644 index dd78fc1ae9..0000000000 --- a/kindred-icons/NavigationOpenSCAD_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OSCA - diff --git a/kindred-icons/NavigationRevit_dark.svg b/kindred-icons/NavigationRevit_dark.svg deleted file mode 100644 index d5d1462099..0000000000 --- a/kindred-icons/NavigationRevit_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RD - diff --git a/kindred-icons/NavigationRevit_light.svg b/kindred-icons/NavigationRevit_light.svg deleted file mode 100644 index a456aeaaa1..0000000000 --- a/kindred-icons/NavigationRevit_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RL - diff --git a/kindred-icons/NavigationSiemensNX_dark.svg b/kindred-icons/NavigationSiemensNX_dark.svg deleted file mode 100644 index 90fbdc714e..0000000000 --- a/kindred-icons/NavigationSiemensNX_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SNXD - diff --git a/kindred-icons/NavigationSiemensNX_light.svg b/kindred-icons/NavigationSiemensNX_light.svg deleted file mode 100644 index 8b311de952..0000000000 --- a/kindred-icons/NavigationSiemensNX_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SNXL - diff --git a/kindred-icons/NavigationSolidWorks_dark.svg b/kindred-icons/NavigationSolidWorks_dark.svg deleted file mode 100644 index 418e28ebc7..0000000000 --- a/kindred-icons/NavigationSolidWorks_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SWD - diff --git a/kindred-icons/NavigationSolidWorks_light.svg b/kindred-icons/NavigationSolidWorks_light.svg deleted file mode 100644 index 60c2c0e326..0000000000 --- a/kindred-icons/NavigationSolidWorks_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SWL - diff --git a/kindred-icons/NavigationTinkerCAD_dark.svg b/kindred-icons/NavigationTinkerCAD_dark.svg deleted file mode 100644 index 641a800df9..0000000000 --- a/kindred-icons/NavigationTinkerCAD_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCAD - diff --git a/kindred-icons/NavigationTinkerCAD_light.svg b/kindred-icons/NavigationTinkerCAD_light.svg deleted file mode 100644 index 641a800df9..0000000000 --- a/kindred-icons/NavigationTinkerCAD_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCAD - diff --git a/kindred-icons/NavigationTouchpad_dark.svg b/kindred-icons/NavigationTouchpad_dark.svg deleted file mode 100644 index ff6b2d8ffd..0000000000 --- a/kindred-icons/NavigationTouchpad_dark.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TD - diff --git a/kindred-icons/NavigationTouchpad_light.svg b/kindred-icons/NavigationTouchpad_light.svg deleted file mode 100644 index abcc78b30b..0000000000 --- a/kindred-icons/NavigationTouchpad_light.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TL - diff --git a/kindred-icons/NavigationUndefined.svg b/kindred-icons/NavigationUndefined.svg deleted file mode 100644 index ce5fc0aa70..0000000000 --- a/kindred-icons/NavigationUndefined.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Unde - diff --git a/kindred-icons/Navigation_Gesture_PanTouch.svg b/kindred-icons/Navigation_Gesture_PanTouch.svg deleted file mode 100644 index d6ff47f102..0000000000 --- a/kindred-icons/Navigation_Gesture_PanTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GPT - diff --git a/kindred-icons/Navigation_Gesture_PanTouchAlt.svg b/kindred-icons/Navigation_Gesture_PanTouchAlt.svg deleted file mode 100644 index 84170d448a..0000000000 --- a/kindred-icons/Navigation_Gesture_PanTouchAlt.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GPTA - diff --git a/kindred-icons/Navigation_Gesture_RotateTouch.svg b/kindred-icons/Navigation_Gesture_RotateTouch.svg deleted file mode 100644 index 5daa082b8c..0000000000 --- a/kindred-icons/Navigation_Gesture_RotateTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GRT - diff --git a/kindred-icons/Navigation_Gesture_SelectTouch.svg b/kindred-icons/Navigation_Gesture_SelectTouch.svg deleted file mode 100644 index 4a03b3d550..0000000000 --- a/kindred-icons/Navigation_Gesture_SelectTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GST - diff --git a/kindred-icons/Navigation_Gesture_TiltTouch.svg b/kindred-icons/Navigation_Gesture_TiltTouch.svg deleted file mode 100644 index 6e1702beb7..0000000000 --- a/kindred-icons/Navigation_Gesture_TiltTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GTT - diff --git a/kindred-icons/Navigation_Gesture_ZoomTouch.svg b/kindred-icons/Navigation_Gesture_ZoomTouch.svg deleted file mode 100644 index 540b879fc4..0000000000 --- a/kindred-icons/Navigation_Gesture_ZoomTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GZT - diff --git a/kindred-icons/Navigation_Mouse_AltLeft.svg b/kindred-icons/Navigation_Mouse_AltLeft.svg deleted file mode 100644 index 0854ce2be1..0000000000 --- a/kindred-icons/Navigation_Mouse_AltLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MAL - diff --git a/kindred-icons/Navigation_Mouse_AltLeftRight.svg b/kindred-icons/Navigation_Mouse_AltLeftRight.svg deleted file mode 100644 index cc038263d7..0000000000 --- a/kindred-icons/Navigation_Mouse_AltLeftRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MALR - diff --git a/kindred-icons/Navigation_Mouse_AltMiddle.svg b/kindred-icons/Navigation_Mouse_AltMiddle.svg deleted file mode 100644 index e59b7ad4b9..0000000000 --- a/kindred-icons/Navigation_Mouse_AltMiddle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MAM - diff --git a/kindred-icons/Navigation_Mouse_AltMove.svg b/kindred-icons/Navigation_Mouse_AltMove.svg deleted file mode 100644 index e59b7ad4b9..0000000000 --- a/kindred-icons/Navigation_Mouse_AltMove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MAM - diff --git a/kindred-icons/Navigation_Mouse_AltRight.svg b/kindred-icons/Navigation_Mouse_AltRight.svg deleted file mode 100644 index baece0bcd5..0000000000 --- a/kindred-icons/Navigation_Mouse_AltRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MAR - diff --git a/kindred-icons/Navigation_Mouse_CtrlLeft.svg b/kindred-icons/Navigation_Mouse_CtrlLeft.svg deleted file mode 100644 index 0bef979321..0000000000 --- a/kindred-icons/Navigation_Mouse_CtrlLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MCL - diff --git a/kindred-icons/Navigation_Mouse_CtrlMiddle.svg b/kindred-icons/Navigation_Mouse_CtrlMiddle.svg deleted file mode 100644 index d6e4f41606..0000000000 --- a/kindred-icons/Navigation_Mouse_CtrlMiddle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MCM - diff --git a/kindred-icons/Navigation_Mouse_CtrlRight.svg b/kindred-icons/Navigation_Mouse_CtrlRight.svg deleted file mode 100644 index 049492e29a..0000000000 --- a/kindred-icons/Navigation_Mouse_CtrlRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MCR - diff --git a/kindred-icons/Navigation_Mouse_Left.svg b/kindred-icons/Navigation_Mouse_Left.svg deleted file mode 100644 index 62177cd0cb..0000000000 --- a/kindred-icons/Navigation_Mouse_Left.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ML - diff --git a/kindred-icons/Navigation_Mouse_LeftMove.svg b/kindred-icons/Navigation_Mouse_LeftMove.svg deleted file mode 100644 index 4ba9178f1d..0000000000 --- a/kindred-icons/Navigation_Mouse_LeftMove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MLM - diff --git a/kindred-icons/Navigation_Mouse_LeftRight.svg b/kindred-icons/Navigation_Mouse_LeftRight.svg deleted file mode 100644 index 0e6c42f943..0000000000 --- a/kindred-icons/Navigation_Mouse_LeftRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MLR - diff --git a/kindred-icons/Navigation_Mouse_Middle.svg b/kindred-icons/Navigation_Mouse_Middle.svg deleted file mode 100644 index 7d432c2bfb..0000000000 --- a/kindred-icons/Navigation_Mouse_Middle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MM - diff --git a/kindred-icons/Navigation_Mouse_MiddleLeft.svg b/kindred-icons/Navigation_Mouse_MiddleLeft.svg deleted file mode 100644 index 3b91ab5ab0..0000000000 --- a/kindred-icons/Navigation_Mouse_MiddleLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MML - diff --git a/kindred-icons/Navigation_Mouse_MiddleRight.svg b/kindred-icons/Navigation_Mouse_MiddleRight.svg deleted file mode 100644 index 1cd4764177..0000000000 --- a/kindred-icons/Navigation_Mouse_MiddleRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MMR - diff --git a/kindred-icons/Navigation_Mouse_Right.svg b/kindred-icons/Navigation_Mouse_Right.svg deleted file mode 100644 index 8117acae19..0000000000 --- a/kindred-icons/Navigation_Mouse_Right.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MR - diff --git a/kindred-icons/Navigation_Mouse_Scroll.svg b/kindred-icons/Navigation_Mouse_Scroll.svg deleted file mode 100644 index caa18fc777..0000000000 --- a/kindred-icons/Navigation_Mouse_Scroll.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/Navigation_Mouse_ShiftCtrlMove.svg b/kindred-icons/Navigation_Mouse_ShiftCtrlMove.svg deleted file mode 100644 index 8c09a26f9f..0000000000 --- a/kindred-icons/Navigation_Mouse_ShiftCtrlMove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MSCM - diff --git a/kindred-icons/Navigation_Mouse_ShiftLeft.svg b/kindred-icons/Navigation_Mouse_ShiftLeft.svg deleted file mode 100644 index 0cee750ea6..0000000000 --- a/kindred-icons/Navigation_Mouse_ShiftLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MSL - diff --git a/kindred-icons/Navigation_Mouse_ShiftMiddle.svg b/kindred-icons/Navigation_Mouse_ShiftMiddle.svg deleted file mode 100644 index 5563d5f36b..0000000000 --- a/kindred-icons/Navigation_Mouse_ShiftMiddle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MSM - diff --git a/kindred-icons/Navigation_Mouse_ShiftMove.svg b/kindred-icons/Navigation_Mouse_ShiftMove.svg deleted file mode 100644 index 5563d5f36b..0000000000 --- a/kindred-icons/Navigation_Mouse_ShiftMove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MSM - diff --git a/kindred-icons/Navigation_Touchpad_AltTouch.svg b/kindred-icons/Navigation_Touchpad_AltTouch.svg deleted file mode 100644 index 2f4ff111bd..0000000000 --- a/kindred-icons/Navigation_Touchpad_AltTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TAT - diff --git a/kindred-icons/Navigation_Touchpad_Left.svg b/kindred-icons/Navigation_Touchpad_Left.svg deleted file mode 100644 index abcc78b30b..0000000000 --- a/kindred-icons/Navigation_Touchpad_Left.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TL - diff --git a/kindred-icons/Navigation_Touchpad_ShiftCtrlTouch.svg b/kindred-icons/Navigation_Touchpad_ShiftCtrlTouch.svg deleted file mode 100644 index f201a10b1f..0000000000 --- a/kindred-icons/Navigation_Touchpad_ShiftCtrlTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TSCT - diff --git a/kindred-icons/Navigation_Touchpad_ShiftLeftTouch.svg b/kindred-icons/Navigation_Touchpad_ShiftLeftTouch.svg deleted file mode 100644 index cdb1c42b8c..0000000000 --- a/kindred-icons/Navigation_Touchpad_ShiftLeftTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TSLT - diff --git a/kindred-icons/Navigation_Touchpad_ShiftTouch.svg b/kindred-icons/Navigation_Touchpad_ShiftTouch.svg deleted file mode 100644 index d14d7a5197..0000000000 --- a/kindred-icons/Navigation_Touchpad_ShiftTouch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TST - diff --git a/kindred-icons/OpenSCADWorkbench.svg b/kindred-icons/OpenSCADWorkbench.svg deleted file mode 100644 index 234af7df67..0000000000 --- a/kindred-icons/OpenSCADWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OSCA - diff --git a/kindred-icons/OpenSCAD_AddOpenSCADElement.svg b/kindred-icons/OpenSCAD_AddOpenSCADElement.svg deleted file mode 100644 index 0f85fe7437..0000000000 --- a/kindred-icons/OpenSCAD_AddOpenSCADElement.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AOSC - diff --git a/kindred-icons/OpenSCAD_ColorCodeShape.svg b/kindred-icons/OpenSCAD_ColorCodeShape.svg deleted file mode 100644 index bb80fd02df..0000000000 --- a/kindred-icons/OpenSCAD_ColorCodeShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CCS - diff --git a/kindred-icons/OpenSCAD_Edgestofaces.svg b/kindred-icons/OpenSCAD_Edgestofaces.svg deleted file mode 100644 index fd4d81f6b0..0000000000 --- a/kindred-icons/OpenSCAD_Edgestofaces.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Edge - diff --git a/kindred-icons/OpenSCAD_ExpandPlacements.svg b/kindred-icons/OpenSCAD_ExpandPlacements.svg deleted file mode 100644 index 32baffa504..0000000000 --- a/kindred-icons/OpenSCAD_ExpandPlacements.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EP - diff --git a/kindred-icons/OpenSCAD_Explode_Group.svg b/kindred-icons/OpenSCAD_Explode_Group.svg deleted file mode 100644 index 25cd71d0c5..0000000000 --- a/kindred-icons/OpenSCAD_Explode_Group.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EG - diff --git a/kindred-icons/OpenSCAD_Hull.svg b/kindred-icons/OpenSCAD_Hull.svg deleted file mode 100644 index 911dc8a8a1..0000000000 --- a/kindred-icons/OpenSCAD_Hull.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Hull - diff --git a/kindred-icons/OpenSCAD_IncreaseToleranceFeature.svg b/kindred-icons/OpenSCAD_IncreaseToleranceFeature.svg deleted file mode 100644 index 452b17455a..0000000000 --- a/kindred-icons/OpenSCAD_IncreaseToleranceFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ITF - diff --git a/kindred-icons/OpenSCAD_MeshBooleans.svg b/kindred-icons/OpenSCAD_MeshBooleans.svg deleted file mode 100644 index c2f42a69fb..0000000000 --- a/kindred-icons/OpenSCAD_MeshBooleans.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MB - diff --git a/kindred-icons/OpenSCAD_Minkowski.svg b/kindred-icons/OpenSCAD_Minkowski.svg deleted file mode 100644 index 8410eb2789..0000000000 --- a/kindred-icons/OpenSCAD_Minkowski.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mink - diff --git a/kindred-icons/OpenSCAD_MirrorMeshFeature.svg b/kindred-icons/OpenSCAD_MirrorMeshFeature.svg deleted file mode 100644 index 148403e145..0000000000 --- a/kindred-icons/OpenSCAD_MirrorMeshFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MMF - diff --git a/kindred-icons/OpenSCAD_RefineShapeFeature.svg b/kindred-icons/OpenSCAD_RefineShapeFeature.svg deleted file mode 100644 index b99d0db71c..0000000000 --- a/kindred-icons/OpenSCAD_RefineShapeFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RSF - diff --git a/kindred-icons/OpenSCAD_RemoveSubtree.svg b/kindred-icons/OpenSCAD_RemoveSubtree.svg deleted file mode 100644 index 411c265cb0..0000000000 --- a/kindred-icons/OpenSCAD_RemoveSubtree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/OpenSCAD_ReplaceObject.svg b/kindred-icons/OpenSCAD_ReplaceObject.svg deleted file mode 100644 index 4cc2c1ba63..0000000000 --- a/kindred-icons/OpenSCAD_ReplaceObject.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RO - diff --git a/kindred-icons/OpenSCAD_ResizeMeshFeature.svg b/kindred-icons/OpenSCAD_ResizeMeshFeature.svg deleted file mode 100644 index 8bbc39a3aa..0000000000 --- a/kindred-icons/OpenSCAD_ResizeMeshFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RMF - diff --git a/kindred-icons/OpenSCAD_ScaleMeshFeature.svg b/kindred-icons/OpenSCAD_ScaleMeshFeature.svg deleted file mode 100644 index 42ba946a7e..0000000000 --- a/kindred-icons/OpenSCAD_ScaleMeshFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SMF - diff --git a/kindred-icons/PartDesignWorkbench.svg b/kindred-icons/PartDesignWorkbench.svg deleted file mode 100644 index 7fe361bfde..0000000000 --- a/kindred-icons/PartDesignWorkbench.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_AdditiveBox.svg b/kindred-icons/PartDesign_AdditiveBox.svg deleted file mode 100644 index 4e993560e6..0000000000 --- a/kindred-icons/PartDesign_AdditiveBox.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AB - diff --git a/kindred-icons/PartDesign_AdditiveCone.svg b/kindred-icons/PartDesign_AdditiveCone.svg deleted file mode 100644 index 02d2b1dc71..0000000000 --- a/kindred-icons/PartDesign_AdditiveCone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AC - diff --git a/kindred-icons/PartDesign_AdditiveCylinder.svg b/kindred-icons/PartDesign_AdditiveCylinder.svg deleted file mode 100644 index 02d2b1dc71..0000000000 --- a/kindred-icons/PartDesign_AdditiveCylinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AC - diff --git a/kindred-icons/PartDesign_AdditiveEllipsoid.svg b/kindred-icons/PartDesign_AdditiveEllipsoid.svg deleted file mode 100644 index 6ccc5dfb3a..0000000000 --- a/kindred-icons/PartDesign_AdditiveEllipsoid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AE - diff --git a/kindred-icons/PartDesign_AdditiveHelix.svg b/kindred-icons/PartDesign_AdditiveHelix.svg deleted file mode 100644 index 4aa03dcf54..0000000000 --- a/kindred-icons/PartDesign_AdditiveHelix.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AH - diff --git a/kindred-icons/PartDesign_AdditiveLoft.svg b/kindred-icons/PartDesign_AdditiveLoft.svg deleted file mode 100644 index 905c178ff4..0000000000 --- a/kindred-icons/PartDesign_AdditiveLoft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AL - diff --git a/kindred-icons/PartDesign_AdditivePipe.svg b/kindred-icons/PartDesign_AdditivePipe.svg deleted file mode 100644 index 928a6f086f..0000000000 --- a/kindred-icons/PartDesign_AdditivePipe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AP - diff --git a/kindred-icons/PartDesign_AdditivePrism.svg b/kindred-icons/PartDesign_AdditivePrism.svg deleted file mode 100644 index 928a6f086f..0000000000 --- a/kindred-icons/PartDesign_AdditivePrism.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AP - diff --git a/kindred-icons/PartDesign_AdditiveSphere.svg b/kindred-icons/PartDesign_AdditiveSphere.svg deleted file mode 100644 index 9a8f6db332..0000000000 --- a/kindred-icons/PartDesign_AdditiveSphere.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AS - diff --git a/kindred-icons/PartDesign_AdditiveTorus.svg b/kindred-icons/PartDesign_AdditiveTorus.svg deleted file mode 100644 index 713cc8c725..0000000000 --- a/kindred-icons/PartDesign_AdditiveTorus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AT - diff --git a/kindred-icons/PartDesign_AdditiveWedge.svg b/kindred-icons/PartDesign_AdditiveWedge.svg deleted file mode 100644 index 1768e57355..0000000000 --- a/kindred-icons/PartDesign_AdditiveWedge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AW - diff --git a/kindred-icons/PartDesign_BaseFeature.svg b/kindred-icons/PartDesign_BaseFeature.svg deleted file mode 100644 index ba318ab146..0000000000 --- a/kindred-icons/PartDesign_BaseFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BF - diff --git a/kindred-icons/PartDesign_Body.svg b/kindred-icons/PartDesign_Body.svg deleted file mode 100644 index 54337d897b..0000000000 --- a/kindred-icons/PartDesign_Body.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Boolean.svg b/kindred-icons/PartDesign_Boolean.svg deleted file mode 100644 index bcf8360f56..0000000000 --- a/kindred-icons/PartDesign_Boolean.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Bool - diff --git a/kindred-icons/PartDesign_Chamfer.svg b/kindred-icons/PartDesign_Chamfer.svg deleted file mode 100644 index 0c31575101..0000000000 --- a/kindred-icons/PartDesign_Chamfer.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Clone.svg b/kindred-icons/PartDesign_Clone.svg deleted file mode 100644 index db61f9b291..0000000000 --- a/kindred-icons/PartDesign_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Clon - diff --git a/kindred-icons/PartDesign_CoordinateSystem.svg b/kindred-icons/PartDesign_CoordinateSystem.svg deleted file mode 100644 index 1f26f7b36b..0000000000 --- a/kindred-icons/PartDesign_CoordinateSystem.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/PartDesign_Draft.svg b/kindred-icons/PartDesign_Draft.svg deleted file mode 100644 index 8521153760..0000000000 --- a/kindred-icons/PartDesign_Draft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Draf - diff --git a/kindred-icons/PartDesign_Fillet.svg b/kindred-icons/PartDesign_Fillet.svg deleted file mode 100644 index e28c9a507e..0000000000 --- a/kindred-icons/PartDesign_Fillet.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Flip_Direction.svg b/kindred-icons/PartDesign_Flip_Direction.svg deleted file mode 100644 index 535ec36dea..0000000000 --- a/kindred-icons/PartDesign_Flip_Direction.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FD - diff --git a/kindred-icons/PartDesign_Groove.svg b/kindred-icons/PartDesign_Groove.svg deleted file mode 100644 index 76ac951619..0000000000 --- a/kindred-icons/PartDesign_Groove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Groo - diff --git a/kindred-icons/PartDesign_Hole.svg b/kindred-icons/PartDesign_Hole.svg deleted file mode 100644 index 5c494f3905..0000000000 --- a/kindred-icons/PartDesign_Hole.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_InternalExternalGear.svg b/kindred-icons/PartDesign_InternalExternalGear.svg deleted file mode 100644 index 7c475c0785..0000000000 --- a/kindred-icons/PartDesign_InternalExternalGear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IEG - diff --git a/kindred-icons/PartDesign_Line.svg b/kindred-icons/PartDesign_Line.svg deleted file mode 100644 index 15a9d081bf..0000000000 --- a/kindred-icons/PartDesign_Line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Line - diff --git a/kindred-icons/PartDesign_LinearPattern.svg b/kindred-icons/PartDesign_LinearPattern.svg deleted file mode 100644 index 85a1f37334..0000000000 --- a/kindred-icons/PartDesign_LinearPattern.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LP - diff --git a/kindred-icons/PartDesign_Migrate.svg b/kindred-icons/PartDesign_Migrate.svg deleted file mode 100644 index 2b044bfc8a..0000000000 --- a/kindred-icons/PartDesign_Migrate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Migr - diff --git a/kindred-icons/PartDesign_Mirrored.svg b/kindred-icons/PartDesign_Mirrored.svg deleted file mode 100644 index db7d96a593..0000000000 --- a/kindred-icons/PartDesign_Mirrored.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mirr - diff --git a/kindred-icons/PartDesign_MoveFeature.svg b/kindred-icons/PartDesign_MoveFeature.svg deleted file mode 100644 index b12bc71ef2..0000000000 --- a/kindred-icons/PartDesign_MoveFeature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MF - diff --git a/kindred-icons/PartDesign_MoveFeatureInTree.svg b/kindred-icons/PartDesign_MoveFeatureInTree.svg deleted file mode 100644 index 781739fac5..0000000000 --- a/kindred-icons/PartDesign_MoveFeatureInTree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MFIT - diff --git a/kindred-icons/PartDesign_MoveTip.svg b/kindred-icons/PartDesign_MoveTip.svg deleted file mode 100644 index e054c7eaf9..0000000000 --- a/kindred-icons/PartDesign_MoveTip.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MT - diff --git a/kindred-icons/PartDesign_MultiTransform.svg b/kindred-icons/PartDesign_MultiTransform.svg deleted file mode 100644 index e054c7eaf9..0000000000 --- a/kindred-icons/PartDesign_MultiTransform.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MT - diff --git a/kindred-icons/PartDesign_NewSketch.svg b/kindred-icons/PartDesign_NewSketch.svg deleted file mode 100644 index c1097c21f6..0000000000 --- a/kindred-icons/PartDesign_NewSketch.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Overlay_Tip.svg b/kindred-icons/PartDesign_Overlay_Tip.svg deleted file mode 100644 index 7207c26e36..0000000000 --- a/kindred-icons/PartDesign_Overlay_Tip.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OT - diff --git a/kindred-icons/PartDesign_Pad.svg b/kindred-icons/PartDesign_Pad.svg deleted file mode 100644 index 628bbc5016..0000000000 --- a/kindred-icons/PartDesign_Pad.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Plane.svg b/kindred-icons/PartDesign_Plane.svg deleted file mode 100644 index 67e135684c..0000000000 --- a/kindred-icons/PartDesign_Plane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Plan - diff --git a/kindred-icons/PartDesign_Pocket.svg b/kindred-icons/PartDesign_Pocket.svg deleted file mode 100644 index aebf8c1d90..0000000000 --- a/kindred-icons/PartDesign_Pocket.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Point.svg b/kindred-icons/PartDesign_Point.svg deleted file mode 100644 index 0be5bea7ef..0000000000 --- a/kindred-icons/PartDesign_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Poin - diff --git a/kindred-icons/PartDesign_PolarPattern.svg b/kindred-icons/PartDesign_PolarPattern.svg deleted file mode 100644 index 67f72ce2dc..0000000000 --- a/kindred-icons/PartDesign_PolarPattern.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/PartDesign_Revolution.svg b/kindred-icons/PartDesign_Revolution.svg deleted file mode 100644 index f635ae5841..0000000000 --- a/kindred-icons/PartDesign_Revolution.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/PartDesign_Scaled.svg b/kindred-icons/PartDesign_Scaled.svg deleted file mode 100644 index 1b5a679a6d..0000000000 --- a/kindred-icons/PartDesign_Scaled.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Scal - diff --git a/kindred-icons/PartDesign_ShapeBinder.svg b/kindred-icons/PartDesign_ShapeBinder.svg deleted file mode 100644 index 16aff8c7b3..0000000000 --- a/kindred-icons/PartDesign_ShapeBinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SB - diff --git a/kindred-icons/PartDesign_Sprocket.svg b/kindred-icons/PartDesign_Sprocket.svg deleted file mode 100644 index fa8347cfe3..0000000000 --- a/kindred-icons/PartDesign_Sprocket.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Spro - diff --git a/kindred-icons/PartDesign_SubShapeBinder.svg b/kindred-icons/PartDesign_SubShapeBinder.svg deleted file mode 100644 index 10d812ab36..0000000000 --- a/kindred-icons/PartDesign_SubShapeBinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SSB - diff --git a/kindred-icons/PartDesign_SubtractiveBox.svg b/kindred-icons/PartDesign_SubtractiveBox.svg deleted file mode 100644 index 16aff8c7b3..0000000000 --- a/kindred-icons/PartDesign_SubtractiveBox.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SB - diff --git a/kindred-icons/PartDesign_SubtractiveCone.svg b/kindred-icons/PartDesign_SubtractiveCone.svg deleted file mode 100644 index 5bb47f517c..0000000000 --- a/kindred-icons/PartDesign_SubtractiveCone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/PartDesign_SubtractiveCylinder.svg b/kindred-icons/PartDesign_SubtractiveCylinder.svg deleted file mode 100644 index 5bb47f517c..0000000000 --- a/kindred-icons/PartDesign_SubtractiveCylinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/PartDesign_SubtractiveEllipsoid.svg b/kindred-icons/PartDesign_SubtractiveEllipsoid.svg deleted file mode 100644 index d3e6eceafa..0000000000 --- a/kindred-icons/PartDesign_SubtractiveEllipsoid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SE - diff --git a/kindred-icons/PartDesign_SubtractiveHelix.svg b/kindred-icons/PartDesign_SubtractiveHelix.svg deleted file mode 100644 index 9cf122fc16..0000000000 --- a/kindred-icons/PartDesign_SubtractiveHelix.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SH - diff --git a/kindred-icons/PartDesign_SubtractiveLoft.svg b/kindred-icons/PartDesign_SubtractiveLoft.svg deleted file mode 100644 index 5d3fa0746b..0000000000 --- a/kindred-icons/PartDesign_SubtractiveLoft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SL - diff --git a/kindred-icons/PartDesign_SubtractivePipe.svg b/kindred-icons/PartDesign_SubtractivePipe.svg deleted file mode 100644 index 775ad00411..0000000000 --- a/kindred-icons/PartDesign_SubtractivePipe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/PartDesign_SubtractivePrism.svg b/kindred-icons/PartDesign_SubtractivePrism.svg deleted file mode 100644 index 775ad00411..0000000000 --- a/kindred-icons/PartDesign_SubtractivePrism.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/PartDesign_SubtractiveSphere.svg b/kindred-icons/PartDesign_SubtractiveSphere.svg deleted file mode 100644 index 3e070627fe..0000000000 --- a/kindred-icons/PartDesign_SubtractiveSphere.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SS - diff --git a/kindred-icons/PartDesign_SubtractiveTorus.svg b/kindred-icons/PartDesign_SubtractiveTorus.svg deleted file mode 100644 index 1761d3b546..0000000000 --- a/kindred-icons/PartDesign_SubtractiveTorus.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ST - diff --git a/kindred-icons/PartDesign_SubtractiveWedge.svg b/kindred-icons/PartDesign_SubtractiveWedge.svg deleted file mode 100644 index 9ba168939b..0000000000 --- a/kindred-icons/PartDesign_SubtractiveWedge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SW - diff --git a/kindred-icons/PartDesign_Thickness.svg b/kindred-icons/PartDesign_Thickness.svg deleted file mode 100644 index 153dca8261..0000000000 --- a/kindred-icons/PartDesign_Thickness.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Thic - diff --git a/kindred-icons/PartWorkbench.svg b/kindred-icons/PartWorkbench.svg deleted file mode 100644 index fa1fa48c0c..0000000000 --- a/kindred-icons/PartWorkbench.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Part_2D_object.svg b/kindred-icons/Part_2D_object.svg deleted file mode 100644 index 5a23c4412c..0000000000 --- a/kindred-icons/Part_2D_object.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 2DO - diff --git a/kindred-icons/Part_3D_object.svg b/kindred-icons/Part_3D_object.svg deleted file mode 100644 index e1099d2ebc..0000000000 --- a/kindred-icons/Part_3D_object.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 3DO - diff --git a/kindred-icons/Part_Attachment.svg b/kindred-icons/Part_Attachment.svg deleted file mode 100644 index 11c713106e..0000000000 --- a/kindred-icons/Part_Attachment.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Atta - diff --git a/kindred-icons/Part_BooleanFragments.svg b/kindred-icons/Part_BooleanFragments.svg deleted file mode 100644 index ba318ab146..0000000000 --- a/kindred-icons/Part_BooleanFragments.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BF - diff --git a/kindred-icons/Part_Booleans.svg b/kindred-icons/Part_Booleans.svg deleted file mode 100644 index bcf8360f56..0000000000 --- a/kindred-icons/Part_Booleans.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Bool - diff --git a/kindred-icons/Part_BoxSelection.svg b/kindred-icons/Part_BoxSelection.svg deleted file mode 100644 index 583a8114de..0000000000 --- a/kindred-icons/Part_BoxSelection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BS - diff --git a/kindred-icons/Part_Box_Parametric.svg b/kindred-icons/Part_Box_Parametric.svg deleted file mode 100644 index 9d6e17d61f..0000000000 --- a/kindred-icons/Part_Box_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BP - diff --git a/kindred-icons/Part_Chamfer.svg b/kindred-icons/Part_Chamfer.svg deleted file mode 100644 index 66fd4f18f5..0000000000 --- a/kindred-icons/Part_Chamfer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cham - diff --git a/kindred-icons/Part_CheckGeometry.svg b/kindred-icons/Part_CheckGeometry.svg deleted file mode 100644 index f2b8c3a564..0000000000 --- a/kindred-icons/Part_CheckGeometry.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CG - diff --git a/kindred-icons/Part_Circle_Parametric.svg b/kindred-icons/Part_Circle_Parametric.svg deleted file mode 100644 index 29b1790de5..0000000000 --- a/kindred-icons/Part_Circle_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/Part_ColorFace.svg b/kindred-icons/Part_ColorFace.svg deleted file mode 100644 index b3424ae150..0000000000 --- a/kindred-icons/Part_ColorFace.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CF - diff --git a/kindred-icons/Part_Common.svg b/kindred-icons/Part_Common.svg deleted file mode 100644 index 07283e4b00..0000000000 --- a/kindred-icons/Part_Common.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Comm - diff --git a/kindred-icons/Part_Compound.svg b/kindred-icons/Part_Compound.svg deleted file mode 100644 index cb4988db4a..0000000000 --- a/kindred-icons/Part_Compound.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Comp - diff --git a/kindred-icons/Part_CompoundFilter.svg b/kindred-icons/Part_CompoundFilter.svg deleted file mode 100644 index b3424ae150..0000000000 --- a/kindred-icons/Part_CompoundFilter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CF - diff --git a/kindred-icons/Part_Cone_Parametric.svg b/kindred-icons/Part_Cone_Parametric.svg deleted file mode 100644 index 29b1790de5..0000000000 --- a/kindred-icons/Part_Cone_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/Part_CrossSections.svg b/kindred-icons/Part_CrossSections.svg deleted file mode 100644 index 1f26f7b36b..0000000000 --- a/kindred-icons/Part_CrossSections.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/Part_Cut.svg b/kindred-icons/Part_Cut.svg deleted file mode 100644 index fe82adbb3d..0000000000 --- a/kindred-icons/Part_Cut.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cut - diff --git a/kindred-icons/Part_Cylinder_Parametric.svg b/kindred-icons/Part_Cylinder_Parametric.svg deleted file mode 100644 index 29b1790de5..0000000000 --- a/kindred-icons/Part_Cylinder_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/Part_Defeaturing.svg b/kindred-icons/Part_Defeaturing.svg deleted file mode 100644 index 15433dfc06..0000000000 --- a/kindred-icons/Part_Defeaturing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Defe - diff --git a/kindred-icons/Part_Detached.svg b/kindred-icons/Part_Detached.svg deleted file mode 100644 index 5d566098fe..0000000000 --- a/kindred-icons/Part_Detached.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Deta - diff --git a/kindred-icons/Part_Element_Copy.svg b/kindred-icons/Part_Element_Copy.svg deleted file mode 100644 index 157bca411a..0000000000 --- a/kindred-icons/Part_Element_Copy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EC - diff --git a/kindred-icons/Part_Ellipse_Parametric.svg b/kindred-icons/Part_Ellipse_Parametric.svg deleted file mode 100644 index 8b325e728e..0000000000 --- a/kindred-icons/Part_Ellipse_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EP - diff --git a/kindred-icons/Part_Ellipsoid_Parametric.svg b/kindred-icons/Part_Ellipsoid_Parametric.svg deleted file mode 100644 index 8b325e728e..0000000000 --- a/kindred-icons/Part_Ellipsoid_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EP - diff --git a/kindred-icons/Part_ExplodeCompound.svg b/kindred-icons/Part_ExplodeCompound.svg deleted file mode 100644 index 157bca411a..0000000000 --- a/kindred-icons/Part_ExplodeCompound.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EC - diff --git a/kindred-icons/Part_Export.svg b/kindred-icons/Part_Export.svg deleted file mode 100644 index cad9778b66..0000000000 --- a/kindred-icons/Part_Export.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Expo - diff --git a/kindred-icons/Part_Extrude.svg b/kindred-icons/Part_Extrude.svg deleted file mode 100644 index e3f00b6b9e..0000000000 --- a/kindred-icons/Part_Extrude.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Extr - diff --git a/kindred-icons/Part_Feature.svg b/kindred-icons/Part_Feature.svg deleted file mode 100644 index 6a4a6a1a51..0000000000 --- a/kindred-icons/Part_Feature.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Feat - diff --git a/kindred-icons/Part_FeatureImport.svg b/kindred-icons/Part_FeatureImport.svg deleted file mode 100644 index a5a83874d6..0000000000 --- a/kindred-icons/Part_FeatureImport.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FI - diff --git a/kindred-icons/Part_Fillet.svg b/kindred-icons/Part_Fillet.svg deleted file mode 100644 index b90b7a82c9..0000000000 --- a/kindred-icons/Part_Fillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fill - diff --git a/kindred-icons/Part_Fuse.svg b/kindred-icons/Part_Fuse.svg deleted file mode 100644 index 8f1971845f..0000000000 --- a/kindred-icons/Part_Fuse.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fuse - diff --git a/kindred-icons/Part_Helix_Parametric.svg b/kindred-icons/Part_Helix_Parametric.svg deleted file mode 100644 index 25f9211d14..0000000000 --- a/kindred-icons/Part_Helix_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HP - diff --git a/kindred-icons/Part_Import.svg b/kindred-icons/Part_Import.svg deleted file mode 100644 index eca59e6915..0000000000 --- a/kindred-icons/Part_Import.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Impo - diff --git a/kindred-icons/Part_JoinBypass.svg b/kindred-icons/Part_JoinBypass.svg deleted file mode 100644 index d354ac7d12..0000000000 --- a/kindred-icons/Part_JoinBypass.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - JB - diff --git a/kindred-icons/Part_JoinConnect.svg b/kindred-icons/Part_JoinConnect.svg deleted file mode 100644 index 073696b6b2..0000000000 --- a/kindred-icons/Part_JoinConnect.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - JC - diff --git a/kindred-icons/Part_JoinCutout.svg b/kindred-icons/Part_JoinCutout.svg deleted file mode 100644 index 073696b6b2..0000000000 --- a/kindred-icons/Part_JoinCutout.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - JC - diff --git a/kindred-icons/Part_JoinEmbed.svg b/kindred-icons/Part_JoinEmbed.svg deleted file mode 100644 index c6a80ea3d6..0000000000 --- a/kindred-icons/Part_JoinEmbed.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - JE - diff --git a/kindred-icons/Part_Line_Parametric.svg b/kindred-icons/Part_Line_Parametric.svg deleted file mode 100644 index 85a1f37334..0000000000 --- a/kindred-icons/Part_Line_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LP - diff --git a/kindred-icons/Part_LinearPattern_extent.svg b/kindred-icons/Part_LinearPattern_extent.svg deleted file mode 100644 index fa64de019d..0000000000 --- a/kindred-icons/Part_LinearPattern_extent.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LPE - diff --git a/kindred-icons/Part_LinearPattern_spacing.svg b/kindred-icons/Part_LinearPattern_spacing.svg deleted file mode 100644 index 737582094d..0000000000 --- a/kindred-icons/Part_LinearPattern_spacing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LPS - diff --git a/kindred-icons/Part_Loft.svg b/kindred-icons/Part_Loft.svg deleted file mode 100644 index b6c339c666..0000000000 --- a/kindred-icons/Part_Loft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Loft - diff --git a/kindred-icons/Part_MakeFace.svg b/kindred-icons/Part_MakeFace.svg deleted file mode 100644 index b12bc71ef2..0000000000 --- a/kindred-icons/Part_MakeFace.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MF - diff --git a/kindred-icons/Part_MakeSolid.svg b/kindred-icons/Part_MakeSolid.svg deleted file mode 100644 index 9492f635d4..0000000000 --- a/kindred-icons/Part_MakeSolid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/Part_Mirror.svg b/kindred-icons/Part_Mirror.svg deleted file mode 100644 index db7d96a593..0000000000 --- a/kindred-icons/Part_Mirror.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mirr - diff --git a/kindred-icons/Part_Offset.svg b/kindred-icons/Part_Offset.svg deleted file mode 100644 index 9bc121bbc7..0000000000 --- a/kindred-icons/Part_Offset.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Offs - diff --git a/kindred-icons/Part_Offset2D.svg b/kindred-icons/Part_Offset2D.svg deleted file mode 100644 index 5bfff095ab..0000000000 --- a/kindred-icons/Part_Offset2D.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - O2D - diff --git a/kindred-icons/Part_Plane_Parametric.svg b/kindred-icons/Part_Plane_Parametric.svg deleted file mode 100644 index 67f72ce2dc..0000000000 --- a/kindred-icons/Part_Plane_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/Part_Point_Parametric.svg b/kindred-icons/Part_Point_Parametric.svg deleted file mode 100644 index 67f72ce2dc..0000000000 --- a/kindred-icons/Part_Point_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/Part_PointsFromMesh.svg b/kindred-icons/Part_PointsFromMesh.svg deleted file mode 100644 index 20a57ead68..0000000000 --- a/kindred-icons/Part_PointsFromMesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFM - diff --git a/kindred-icons/Part_Polygon_Parametric.svg b/kindred-icons/Part_Polygon_Parametric.svg deleted file mode 100644 index 67f72ce2dc..0000000000 --- a/kindred-icons/Part_Polygon_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/Part_Primitives.svg b/kindred-icons/Part_Primitives.svg deleted file mode 100644 index afdeafe3cc..0000000000 --- a/kindred-icons/Part_Primitives.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Prim - diff --git a/kindred-icons/Part_Prism_Parametric.svg b/kindred-icons/Part_Prism_Parametric.svg deleted file mode 100644 index 67f72ce2dc..0000000000 --- a/kindred-icons/Part_Prism_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/Part_ProjectionOnSurface.svg b/kindred-icons/Part_ProjectionOnSurface.svg deleted file mode 100644 index cd9100af7e..0000000000 --- a/kindred-icons/Part_ProjectionOnSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POS - diff --git a/kindred-icons/Part_Refine_Shape.svg b/kindred-icons/Part_Refine_Shape.svg deleted file mode 100644 index 180515bc69..0000000000 --- a/kindred-icons/Part_Refine_Shape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/Part_Reverse_Shape.svg b/kindred-icons/Part_Reverse_Shape.svg deleted file mode 100644 index 180515bc69..0000000000 --- a/kindred-icons/Part_Reverse_Shape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/Part_Revolve.svg b/kindred-icons/Part_Revolve.svg deleted file mode 100644 index b839614077..0000000000 --- a/kindred-icons/Part_Revolve.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Revo - diff --git a/kindred-icons/Part_RuledSurface.svg b/kindred-icons/Part_RuledSurface.svg deleted file mode 100644 index 180515bc69..0000000000 --- a/kindred-icons/Part_RuledSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/Part_Scale.svg b/kindred-icons/Part_Scale.svg deleted file mode 100644 index 1b5a679a6d..0000000000 --- a/kindred-icons/Part_Scale.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Scal - diff --git a/kindred-icons/Part_Section.svg b/kindred-icons/Part_Section.svg deleted file mode 100644 index e6b8a715f9..0000000000 --- a/kindred-icons/Part_Section.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sect - diff --git a/kindred-icons/Part_SectionCut.svg b/kindred-icons/Part_SectionCut.svg deleted file mode 100644 index 5bb47f517c..0000000000 --- a/kindred-icons/Part_SectionCut.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/Part_ShapeInfo.svg b/kindred-icons/Part_ShapeInfo.svg deleted file mode 100644 index 6888963804..0000000000 --- a/kindred-icons/Part_ShapeInfo.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SI - diff --git a/kindred-icons/Part_Shape_from_Mesh.svg b/kindred-icons/Part_Shape_from_Mesh.svg deleted file mode 100644 index 5aab47f13d..0000000000 --- a/kindred-icons/Part_Shape_from_Mesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SFM - diff --git a/kindred-icons/Part_Shapebuilder.svg b/kindred-icons/Part_Shapebuilder.svg deleted file mode 100644 index 5e70176fd9..0000000000 --- a/kindred-icons/Part_Shapebuilder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Shap - diff --git a/kindred-icons/Part_Slice.svg b/kindred-icons/Part_Slice.svg deleted file mode 100644 index 3457fa63e4..0000000000 --- a/kindred-icons/Part_Slice.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Slic - diff --git a/kindred-icons/Part_SliceApart.svg b/kindred-icons/Part_SliceApart.svg deleted file mode 100644 index 60428d9791..0000000000 --- a/kindred-icons/Part_SliceApart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SA - diff --git a/kindred-icons/Part_Sphere_Parametric.svg b/kindred-icons/Part_Sphere_Parametric.svg deleted file mode 100644 index 775ad00411..0000000000 --- a/kindred-icons/Part_Sphere_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Part_Spiral_Parametric.svg b/kindred-icons/Part_Spiral_Parametric.svg deleted file mode 100644 index 775ad00411..0000000000 --- a/kindred-icons/Part_Spiral_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Part_Spline_Parametric.svg b/kindred-icons/Part_Spline_Parametric.svg deleted file mode 100644 index 775ad00411..0000000000 --- a/kindred-icons/Part_Spline_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SP - diff --git a/kindred-icons/Part_Sweep.svg b/kindred-icons/Part_Sweep.svg deleted file mode 100644 index 5be4037389..0000000000 --- a/kindred-icons/Part_Sweep.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Swee - diff --git a/kindred-icons/Part_Thickness.svg b/kindred-icons/Part_Thickness.svg deleted file mode 100644 index 153dca8261..0000000000 --- a/kindred-icons/Part_Thickness.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Thic - diff --git a/kindred-icons/Part_Torus_Parametric.svg b/kindred-icons/Part_Torus_Parametric.svg deleted file mode 100644 index 1e8507518a..0000000000 --- a/kindred-icons/Part_Torus_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TP - diff --git a/kindred-icons/Part_Transformed_Copy.svg b/kindred-icons/Part_Transformed_Copy.svg deleted file mode 100644 index 92939db00e..0000000000 --- a/kindred-icons/Part_Transformed_Copy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TC - diff --git a/kindred-icons/Part_Tube_Parametric.svg b/kindred-icons/Part_Tube_Parametric.svg deleted file mode 100644 index 1e8507518a..0000000000 --- a/kindred-icons/Part_Tube_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TP - diff --git a/kindred-icons/Part_Wedge_Parametric.svg b/kindred-icons/Part_Wedge_Parametric.svg deleted file mode 100644 index 6cb8e60f71..0000000000 --- a/kindred-icons/Part_Wedge_Parametric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WP - diff --git a/kindred-icons/Part_XOR.svg b/kindred-icons/Part_XOR.svg deleted file mode 100644 index eefb6b6c81..0000000000 --- a/kindred-icons/Part_XOR.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - XOR - diff --git a/kindred-icons/Part_document.svg b/kindred-icons/Part_document.svg deleted file mode 100644 index 83ace19676..0000000000 --- a/kindred-icons/Part_document.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - docu - diff --git a/kindred-icons/PointsWorkbench.svg b/kindred-icons/PointsWorkbench.svg deleted file mode 100644 index 928c3862cb..0000000000 --- a/kindred-icons/PointsWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PW - diff --git a/kindred-icons/Points_Convert.svg b/kindred-icons/Points_Convert.svg deleted file mode 100644 index e68ead7768..0000000000 --- a/kindred-icons/Points_Convert.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Conv - diff --git a/kindred-icons/Points_Export_Point_cloud.svg b/kindred-icons/Points_Export_Point_cloud.svg deleted file mode 100644 index 371a6dc4d5..0000000000 --- a/kindred-icons/Points_Export_Point_cloud.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPC - diff --git a/kindred-icons/Points_Import_Point_cloud.svg b/kindred-icons/Points_Import_Point_cloud.svg deleted file mode 100644 index 09405a65df..0000000000 --- a/kindred-icons/Points_Import_Point_cloud.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IPC - diff --git a/kindred-icons/Points_Merge.svg b/kindred-icons/Points_Merge.svg deleted file mode 100644 index 29dc84e178..0000000000 --- a/kindred-icons/Points_Merge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Merg - diff --git a/kindred-icons/Points_Structure.svg b/kindred-icons/Points_Structure.svg deleted file mode 100644 index 5660368d42..0000000000 --- a/kindred-icons/Points_Structure.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Stru - diff --git a/kindred-icons/README.md b/kindred-icons/README.md deleted file mode 100644 index bb7627cf90..0000000000 --- a/kindred-icons/README.md +++ /dev/null @@ -1,121 +0,0 @@ -# Kindred Create Icons - -This directory contains custom Catppuccin Mocha themed SVG icons that override the default FreeCAD icons. - -## How It Works - -Icons placed in this directory are loaded **before** the default FreeCAD icons. To override an icon, simply create an SVG file with the same name as the original icon. - -For example, to override `document-save.svg`, create `kindred-icons/document-save.svg`. - -## Icon Design Standards - -All Kindred Create icons follow these guidelines: - -### Template - -```svg - - - - -``` - -### Specifications - -| Property | Value | -|----------|-------| -| ViewBox | 32x32 | -| Background | Rounded rect, rx=4, fill=`#313244` (surface0) | -| Stroke width | 1.5-2.5 for main elements | -| Style | Flat, minimal, geometric | - -### Catppuccin Mocha Palette - -| Color | Hex | Usage | -|-------|-----|-------| -| Base | `#1e1e2e` | Deep backgrounds | -| Mantle | `#181825` | Darker backgrounds | -| Crust | `#11111b` | Darkest backgrounds | -| Surface0 | `#313244` | **Icon backgrounds** | -| Surface1 | `#45475a` | Elevated surfaces | -| Surface2 | `#585b70` | Higher surfaces | -| Overlay0 | `#6c7086` | Subtle elements | -| Overlay1 | `#7f849c` | More visible overlays | -| Overlay2 | `#9399b2` | Prominent overlays | -| Subtext0 | `#a6adc8` | Tertiary text | -| Subtext1 | `#bac2de` | Secondary text | -| Text | `#cdd6f4` | **Primary text/strokes** | -| Lavender | `#b4befe` | Soft purple accent | -| Blue | `#89b4fa` | **File operations** | -| Sapphire | `#74c7ec` | Links, info | -| Sky | `#89dceb` | Light blue accent | -| Teal | `#94e2d5` | Success secondary | -| Green | `#a6e3a1` | **Edit operations, Creation/Success** | -| Yellow | `#f9e2af` | **View operations** | -| Peach | `#fab387` | **View accents** | -| Maroon | `#eba0ac` | Soft red | -| Red | `#f38ba8` | **Deletion/Error** | -| Mauve | `#cba6f7` | **System/Settings** | -| Lavender | `#b4befe` | **System accents** | -| Pink | `#f5c2e7` | Decorative | -| Flamingo | `#f2cdcd` | Soft accents | -| Rosewater | `#f5e0dc` | Lightest accent | - -### Workbench Color Coding - -Each workbench uses a distinct accent color: - -| Workbench | Primary | Accent | -|-----------|---------|--------| -| Part Design | Blue `#89b4fa` | Sapphire `#74c7ec` | -| Sketcher | Yellow `#f9e2af` | Peach `#fab387` | -| Assembly | Green `#a6e3a1` | Teal `#94e2d5` | -| TechDraw | Mauve `#cba6f7` | Lavender `#b4befe` | -| Spreadsheet | Sky `#89dceb` | Sapphire `#74c7ec` | -| Mesh | Pink `#f5c2e7` | Flamingo `#f2cdcd` | -| Draft | Peach `#fab387` | Yellow `#f9e2af` | - -## Adding New Icons - -1. Identify the original icon name (e.g., `document-save.svg`) -2. Create your SVG using the template above -3. Save it in this directory with the exact same filename -4. The new icon will be used on next application start - -## Finding Original Icon Names - -Original icons are located in: -- `src/Gui/Icons/` - Core GUI icons -- `src/Mod/*/Gui/Resources/icons/` - Module-specific icons - -Use the same filename to override. - -## Icon Categories - -The icon set covers these categories: - -| Category | Count | Examples | -|----------|-------|----------| -| File Operations | 15+ | document-save, document-open, Std_Export | -| Edit Operations | 20+ | edit-undo, edit-copy, edit-paste | -| View Operations | 35+ | zoom-in, DrawStyle*, Std_View* | -| System/Settings | 15+ | preferences-system, help-browser | -| Tree View | 15 | Tree_*, tree-* | -| Link/Structure | 15+ | Link*, Feature, Group | -| Workbenches | 8 | PartDesignWorkbench, SketcherWorkbench | -| PartDesign | 8 | PartDesign_Pad, PartDesign_Pocket | -| Sketcher | 10+ | Sketcher_Create*, Constraint_* | -| Assembly | 6 | Assembly_Create*, Assembly_Insert* | -| Navigation | 10+ | button_*, cursor-* | -| Selection | 8 | *-selection, clear-selection | -| DAG View | 4 | dagView* | - -**Total: 191 icons** - -## Related Issues - -- Epic: https://git.kindred-systems.com/kindred/create/issues/7 -- Phase 1 (Core): https://git.kindred-systems.com/kindred/create/issues/4 -- Phase 2 (Workbench): https://git.kindred-systems.com/kindred/create/issues/5 -- Phase 3 (Complete): https://git.kindred-systems.com/kindred/create/issues/6 diff --git a/kindred-icons/ReverseEngineeringWorkbench.svg b/kindred-icons/ReverseEngineeringWorkbench.svg deleted file mode 100644 index 93197f09d5..0000000000 --- a/kindred-icons/ReverseEngineeringWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - REW - diff --git a/kindred-icons/RobotWorkbench.svg b/kindred-icons/RobotWorkbench.svg deleted file mode 100644 index a13f3d05ea..0000000000 --- a/kindred-icons/RobotWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RW - diff --git a/kindred-icons/Robot_CreateRobot.svg b/kindred-icons/Robot_CreateRobot.svg deleted file mode 100644 index c86bccf9b0..0000000000 --- a/kindred-icons/Robot_CreateRobot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CR - diff --git a/kindred-icons/Robot_CreateTrajectory.svg b/kindred-icons/Robot_CreateTrajectory.svg deleted file mode 100644 index 63ee63d2ef..0000000000 --- a/kindred-icons/Robot_CreateTrajectory.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/Robot_Edge2Trac.svg b/kindred-icons/Robot_Edge2Trac.svg deleted file mode 100644 index 460fcb1e86..0000000000 --- a/kindred-icons/Robot_Edge2Trac.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - E2T - diff --git a/kindred-icons/Robot_Export.svg b/kindred-icons/Robot_Export.svg deleted file mode 100644 index 7df985ca0a..0000000000 --- a/kindred-icons/Robot_Export.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Expo - diff --git a/kindred-icons/Robot_InsertWaypoint.svg b/kindred-icons/Robot_InsertWaypoint.svg deleted file mode 100644 index 6d2c5f389c..0000000000 --- a/kindred-icons/Robot_InsertWaypoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IW - diff --git a/kindred-icons/Robot_InsertWaypointPre.svg b/kindred-icons/Robot_InsertWaypointPre.svg deleted file mode 100644 index 65fe7b0140..0000000000 --- a/kindred-icons/Robot_InsertWaypointPre.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IWP - diff --git a/kindred-icons/Robot_RestoreHomePos.svg b/kindred-icons/Robot_RestoreHomePos.svg deleted file mode 100644 index b0decb2080..0000000000 --- a/kindred-icons/Robot_RestoreHomePos.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RHP - diff --git a/kindred-icons/Robot_SetDefaultOrientation.svg b/kindred-icons/Robot_SetDefaultOrientation.svg deleted file mode 100644 index 88762fce5f..0000000000 --- a/kindred-icons/Robot_SetDefaultOrientation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SDO - diff --git a/kindred-icons/Robot_SetDefaultValues.svg b/kindred-icons/Robot_SetDefaultValues.svg deleted file mode 100644 index 343ab2c060..0000000000 --- a/kindred-icons/Robot_SetDefaultValues.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SDV - diff --git a/kindred-icons/Robot_SetHomePos.svg b/kindred-icons/Robot_SetHomePos.svg deleted file mode 100644 index b67fabe790..0000000000 --- a/kindred-icons/Robot_SetHomePos.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SHP - diff --git a/kindred-icons/Robot_Simulate.svg b/kindred-icons/Robot_Simulate.svg deleted file mode 100644 index e785e909f7..0000000000 --- a/kindred-icons/Robot_Simulate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Simu - diff --git a/kindred-icons/Robot_TrajectoryCompound.svg b/kindred-icons/Robot_TrajectoryCompound.svg deleted file mode 100644 index 17199c5d1c..0000000000 --- a/kindred-icons/Robot_TrajectoryCompound.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TC - diff --git a/kindred-icons/Robot_TrajectoryDressUp.svg b/kindred-icons/Robot_TrajectoryDressUp.svg deleted file mode 100644 index dacdddd0e2..0000000000 --- a/kindred-icons/Robot_TrajectoryDressUp.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TDU - diff --git a/kindred-icons/Sketch.svg b/kindred-icons/Sketch.svg deleted file mode 100644 index 60285ab12e..0000000000 --- a/kindred-icons/Sketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sket - diff --git a/kindred-icons/SketcherWorkbench.svg b/kindred-icons/SketcherWorkbench.svg deleted file mode 100644 index d4a4c4e17b..0000000000 --- a/kindred-icons/SketcherWorkbench.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/kindred-icons/Sketcher_AlterFillet.svg b/kindred-icons/Sketcher_AlterFillet.svg deleted file mode 100644 index ab47c72c6e..0000000000 --- a/kindred-icons/Sketcher_AlterFillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AF - diff --git a/kindred-icons/Sketcher_ArcOverlay.svg b/kindred-icons/Sketcher_ArcOverlay.svg deleted file mode 100644 index e6d28c1a46..0000000000 --- a/kindred-icons/Sketcher_ArcOverlay.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AO - diff --git a/kindred-icons/Sketcher_BSplineComb.svg b/kindred-icons/Sketcher_BSplineComb.svg deleted file mode 100644 index fc0b57404e..0000000000 --- a/kindred-icons/Sketcher_BSplineComb.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSC - diff --git a/kindred-icons/Sketcher_BSplineConvertToNURBS.svg b/kindred-icons/Sketcher_BSplineConvertToNURBS.svg deleted file mode 100644 index 2566dfb42d..0000000000 --- a/kindred-icons/Sketcher_BSplineConvertToNURBS.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSCT - diff --git a/kindred-icons/Sketcher_BSplineDecreaseDegree.svg b/kindred-icons/Sketcher_BSplineDecreaseDegree.svg deleted file mode 100644 index 69b622623e..0000000000 --- a/kindred-icons/Sketcher_BSplineDecreaseDegree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSDD - diff --git a/kindred-icons/Sketcher_BSplineDecreaseKnotMultiplicity.svg b/kindred-icons/Sketcher_BSplineDecreaseKnotMultiplicity.svg deleted file mode 100644 index 351c73e402..0000000000 --- a/kindred-icons/Sketcher_BSplineDecreaseKnotMultiplicity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSDK - diff --git a/kindred-icons/Sketcher_BSplineDegree.svg b/kindred-icons/Sketcher_BSplineDegree.svg deleted file mode 100644 index 0d8c20d09f..0000000000 --- a/kindred-icons/Sketcher_BSplineDegree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSD - diff --git a/kindred-icons/Sketcher_BSplineIncreaseDegree.svg b/kindred-icons/Sketcher_BSplineIncreaseDegree.svg deleted file mode 100644 index 1013664426..0000000000 --- a/kindred-icons/Sketcher_BSplineIncreaseDegree.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSID - diff --git a/kindred-icons/Sketcher_BSplineIncreaseKnotMultiplicity.svg b/kindred-icons/Sketcher_BSplineIncreaseKnotMultiplicity.svg deleted file mode 100644 index 060d65731a..0000000000 --- a/kindred-icons/Sketcher_BSplineIncreaseKnotMultiplicity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSIK - diff --git a/kindred-icons/Sketcher_BSplineInsertKnot.svg b/kindred-icons/Sketcher_BSplineInsertKnot.svg deleted file mode 100644 index 060d65731a..0000000000 --- a/kindred-icons/Sketcher_BSplineInsertKnot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSIK - diff --git a/kindred-icons/Sketcher_BSplineKnotMultiplicity.svg b/kindred-icons/Sketcher_BSplineKnotMultiplicity.svg deleted file mode 100644 index f02550b79c..0000000000 --- a/kindred-icons/Sketcher_BSplineKnotMultiplicity.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSKM - diff --git a/kindred-icons/Sketcher_BSplinePoleWeight.svg b/kindred-icons/Sketcher_BSplinePoleWeight.svg deleted file mode 100644 index 0dc2661dce..0000000000 --- a/kindred-icons/Sketcher_BSplinePoleWeight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSPW - diff --git a/kindred-icons/Sketcher_BSplinePolygon.svg b/kindred-icons/Sketcher_BSplinePolygon.svg deleted file mode 100644 index b563211eee..0000000000 --- a/kindred-icons/Sketcher_BSplinePolygon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSP - diff --git a/kindred-icons/Sketcher_CarbonCopy.svg b/kindred-icons/Sketcher_CarbonCopy.svg deleted file mode 100644 index e1f6c1783b..0000000000 --- a/kindred-icons/Sketcher_CarbonCopy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/Sketcher_CarbonCopy_Constr.svg b/kindred-icons/Sketcher_CarbonCopy_Constr.svg deleted file mode 100644 index 85325cf6c3..0000000000 --- a/kindred-icons/Sketcher_CarbonCopy_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CCC - diff --git a/kindred-icons/Sketcher_Clone.svg b/kindred-icons/Sketcher_Clone.svg deleted file mode 100644 index 083cd142aa..0000000000 --- a/kindred-icons/Sketcher_Clone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Clon - diff --git a/kindred-icons/Sketcher_Conics.svg b/kindred-icons/Sketcher_Conics.svg deleted file mode 100644 index 20b034e394..0000000000 --- a/kindred-icons/Sketcher_Conics.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Coni - diff --git a/kindred-icons/Sketcher_Conics_Constr.svg b/kindred-icons/Sketcher_Conics_Constr.svg deleted file mode 100644 index e1f6c1783b..0000000000 --- a/kindred-icons/Sketcher_Conics_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/Sketcher_Conics_Ellipse_3points.svg b/kindred-icons/Sketcher_Conics_Ellipse_3points.svg deleted file mode 100644 index 6cf2d99c8e..0000000000 --- a/kindred-icons/Sketcher_Conics_Ellipse_3points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CE3P - diff --git a/kindred-icons/Sketcher_Conics_Ellipse_Center.svg b/kindred-icons/Sketcher_Conics_Ellipse_Center.svg deleted file mode 100644 index 3f96daa406..0000000000 --- a/kindred-icons/Sketcher_Conics_Ellipse_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CEC - diff --git a/kindred-icons/Sketcher_ConstrainCoincident_old.svg b/kindred-icons/Sketcher_ConstrainCoincident_old.svg deleted file mode 100644 index 9d1c11f2cf..0000000000 --- a/kindred-icons/Sketcher_ConstrainCoincident_old.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CCO - diff --git a/kindred-icons/Sketcher_ConstrainDistance_old.svg b/kindred-icons/Sketcher_ConstrainDistance_old.svg deleted file mode 100644 index ae30f756c4..0000000000 --- a/kindred-icons/Sketcher_ConstrainDistance_old.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CDO - diff --git a/kindred-icons/Sketcher_ConstrainHorizontal_old.svg b/kindred-icons/Sketcher_ConstrainHorizontal_old.svg deleted file mode 100644 index 9661aa89d7..0000000000 --- a/kindred-icons/Sketcher_ConstrainHorizontal_old.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CHO - diff --git a/kindred-icons/Sketcher_ConstrainParallel_old.svg b/kindred-icons/Sketcher_ConstrainParallel_old.svg deleted file mode 100644 index 92c78e4038..0000000000 --- a/kindred-icons/Sketcher_ConstrainParallel_old.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPO - diff --git a/kindred-icons/Sketcher_ConstrainVertical_old.svg b/kindred-icons/Sketcher_ConstrainVertical_old.svg deleted file mode 100644 index b7f4009e5d..0000000000 --- a/kindred-icons/Sketcher_ConstrainVertical_old.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CVO - diff --git a/kindred-icons/Sketcher_Copy.svg b/kindred-icons/Sketcher_Copy.svg deleted file mode 100644 index 2ded25bd35..0000000000 --- a/kindred-icons/Sketcher_Copy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Copy - diff --git a/kindred-icons/Sketcher_Create3PointArc.svg b/kindred-icons/Sketcher_Create3PointArc.svg deleted file mode 100644 index a393b074e9..0000000000 --- a/kindred-icons/Sketcher_Create3PointArc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - C3PA - diff --git a/kindred-icons/Sketcher_Create3PointArc_Constr.svg b/kindred-icons/Sketcher_Create3PointArc_Constr.svg deleted file mode 100644 index a393b074e9..0000000000 --- a/kindred-icons/Sketcher_Create3PointArc_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - C3PA - diff --git a/kindred-icons/Sketcher_Create3PointCircle.svg b/kindred-icons/Sketcher_Create3PointCircle.svg deleted file mode 100644 index 95c8de854e..0000000000 --- a/kindred-icons/Sketcher_Create3PointCircle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - C3PC - diff --git a/kindred-icons/Sketcher_Create3PointCircle_Constr.svg b/kindred-icons/Sketcher_Create3PointCircle_Constr.svg deleted file mode 100644 index 95c8de854e..0000000000 --- a/kindred-icons/Sketcher_Create3PointCircle_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - C3PC - diff --git a/kindred-icons/Sketcher_CreateArc.svg b/kindred-icons/Sketcher_CreateArc.svg deleted file mode 100644 index 3f528e73e7..0000000000 --- a/kindred-icons/Sketcher_CreateArc.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/Sketcher_CreateArcSlot.svg b/kindred-icons/Sketcher_CreateArcSlot.svg deleted file mode 100644 index d40145fedd..0000000000 --- a/kindred-icons/Sketcher_CreateArcSlot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CAS - diff --git a/kindred-icons/Sketcher_CreateArcSlot_Constr.svg b/kindred-icons/Sketcher_CreateArcSlot_Constr.svg deleted file mode 100644 index 6f0dadda1f..0000000000 --- a/kindred-icons/Sketcher_CreateArcSlot_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CASC - diff --git a/kindred-icons/Sketcher_CreateArc_Constr.svg b/kindred-icons/Sketcher_CreateArc_Constr.svg deleted file mode 100644 index 90b972a905..0000000000 --- a/kindred-icons/Sketcher_CreateArc_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CAC - diff --git a/kindred-icons/Sketcher_CreateBSpline.svg b/kindred-icons/Sketcher_CreateBSpline.svg deleted file mode 100644 index 4ff3300a48..0000000000 --- a/kindred-icons/Sketcher_CreateBSpline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CBS - diff --git a/kindred-icons/Sketcher_CreateBSplineByInterpolation.svg b/kindred-icons/Sketcher_CreateBSplineByInterpolation.svg deleted file mode 100644 index 314bbc228b..0000000000 --- a/kindred-icons/Sketcher_CreateBSplineByInterpolation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CBSB - diff --git a/kindred-icons/Sketcher_CreateBSplineByInterpolation_Constr.svg b/kindred-icons/Sketcher_CreateBSplineByInterpolation_Constr.svg deleted file mode 100644 index 314bbc228b..0000000000 --- a/kindred-icons/Sketcher_CreateBSplineByInterpolation_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CBSB - diff --git a/kindred-icons/Sketcher_CreateBSpline_Constr.svg b/kindred-icons/Sketcher_CreateBSpline_Constr.svg deleted file mode 100644 index 7f569d0654..0000000000 --- a/kindred-icons/Sketcher_CreateBSpline_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CBSC - diff --git a/kindred-icons/Sketcher_CreateChamfer.svg b/kindred-icons/Sketcher_CreateChamfer.svg deleted file mode 100644 index e1f6c1783b..0000000000 --- a/kindred-icons/Sketcher_CreateChamfer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/Sketcher_CreateCircle.svg b/kindred-icons/Sketcher_CreateCircle.svg deleted file mode 100644 index 67e837a63c..0000000000 --- a/kindred-icons/Sketcher_CreateCircle.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Sketcher_CreateCircle_Constr.svg b/kindred-icons/Sketcher_CreateCircle_Constr.svg deleted file mode 100644 index 85325cf6c3..0000000000 --- a/kindred-icons/Sketcher_CreateCircle_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CCC - diff --git a/kindred-icons/Sketcher_CreateEllipseByCenter.svg b/kindred-icons/Sketcher_CreateEllipseByCenter.svg deleted file mode 100644 index 6b90f20534..0000000000 --- a/kindred-icons/Sketcher_CreateEllipseByCenter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CEBC - diff --git a/kindred-icons/Sketcher_CreateEllipseByCenter_Constr.svg b/kindred-icons/Sketcher_CreateEllipseByCenter_Constr.svg deleted file mode 100644 index 6b90f20534..0000000000 --- a/kindred-icons/Sketcher_CreateEllipseByCenter_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CEBC - diff --git a/kindred-icons/Sketcher_CreateEllipse_3points.svg b/kindred-icons/Sketcher_CreateEllipse_3points.svg deleted file mode 100644 index 6cf2d99c8e..0000000000 --- a/kindred-icons/Sketcher_CreateEllipse_3points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CE3P - diff --git a/kindred-icons/Sketcher_CreateEllipse_3points_Constr.svg b/kindred-icons/Sketcher_CreateEllipse_3points_Constr.svg deleted file mode 100644 index 6cf2d99c8e..0000000000 --- a/kindred-icons/Sketcher_CreateEllipse_3points_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CE3P - diff --git a/kindred-icons/Sketcher_CreateElliptical_Arc.svg b/kindred-icons/Sketcher_CreateElliptical_Arc.svg deleted file mode 100644 index 6c85d2a3c1..0000000000 --- a/kindred-icons/Sketcher_CreateElliptical_Arc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CEA - diff --git a/kindred-icons/Sketcher_CreateElliptical_Arc_Constr.svg b/kindred-icons/Sketcher_CreateElliptical_Arc_Constr.svg deleted file mode 100644 index ae5121bc09..0000000000 --- a/kindred-icons/Sketcher_CreateElliptical_Arc_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CEAC - diff --git a/kindred-icons/Sketcher_CreateFillet.svg b/kindred-icons/Sketcher_CreateFillet.svg deleted file mode 100644 index 47664bda47..0000000000 --- a/kindred-icons/Sketcher_CreateFillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CF - diff --git a/kindred-icons/Sketcher_CreateFrame.svg b/kindred-icons/Sketcher_CreateFrame.svg deleted file mode 100644 index 47664bda47..0000000000 --- a/kindred-icons/Sketcher_CreateFrame.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CF - diff --git a/kindred-icons/Sketcher_CreateFrame_Constr.svg b/kindred-icons/Sketcher_CreateFrame_Constr.svg deleted file mode 100644 index 9ba67fdfe9..0000000000 --- a/kindred-icons/Sketcher_CreateFrame_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CFC - diff --git a/kindred-icons/Sketcher_CreateHeptagon.svg b/kindred-icons/Sketcher_CreateHeptagon.svg deleted file mode 100644 index 2aad7b4ce1..0000000000 --- a/kindred-icons/Sketcher_CreateHeptagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CH - diff --git a/kindred-icons/Sketcher_CreateHeptagon_Constr.svg b/kindred-icons/Sketcher_CreateHeptagon_Constr.svg deleted file mode 100644 index dff1913e29..0000000000 --- a/kindred-icons/Sketcher_CreateHeptagon_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CHC - diff --git a/kindred-icons/Sketcher_CreateHexagon.svg b/kindred-icons/Sketcher_CreateHexagon.svg deleted file mode 100644 index 2aad7b4ce1..0000000000 --- a/kindred-icons/Sketcher_CreateHexagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CH - diff --git a/kindred-icons/Sketcher_CreateHexagon_Constr.svg b/kindred-icons/Sketcher_CreateHexagon_Constr.svg deleted file mode 100644 index dff1913e29..0000000000 --- a/kindred-icons/Sketcher_CreateHexagon_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CHC - diff --git a/kindred-icons/Sketcher_CreateHyperbolic_Arc.svg b/kindred-icons/Sketcher_CreateHyperbolic_Arc.svg deleted file mode 100644 index c4169ccfab..0000000000 --- a/kindred-icons/Sketcher_CreateHyperbolic_Arc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CHA - diff --git a/kindred-icons/Sketcher_CreateHyperbolic_Arc_Constr.svg b/kindred-icons/Sketcher_CreateHyperbolic_Arc_Constr.svg deleted file mode 100644 index d1e8ff6067..0000000000 --- a/kindred-icons/Sketcher_CreateHyperbolic_Arc_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CHAC - diff --git a/kindred-icons/Sketcher_CreateLine.svg b/kindred-icons/Sketcher_CreateLine.svg deleted file mode 100644 index 78b1b2046e..0000000000 --- a/kindred-icons/Sketcher_CreateLine.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/Sketcher_CreateLineAngleLength.svg b/kindred-icons/Sketcher_CreateLineAngleLength.svg deleted file mode 100644 index 366f37a56d..0000000000 --- a/kindred-icons/Sketcher_CreateLineAngleLength.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CLAL - diff --git a/kindred-icons/Sketcher_CreateLineAngleLength_Constr.svg b/kindred-icons/Sketcher_CreateLineAngleLength_Constr.svg deleted file mode 100644 index 366f37a56d..0000000000 --- a/kindred-icons/Sketcher_CreateLineAngleLength_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CLAL - diff --git a/kindred-icons/Sketcher_CreateLineLengthWidth.svg b/kindred-icons/Sketcher_CreateLineLengthWidth.svg deleted file mode 100644 index 516369cbf6..0000000000 --- a/kindred-icons/Sketcher_CreateLineLengthWidth.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CLLW - diff --git a/kindred-icons/Sketcher_CreateLineLengthWidth_Constr.svg b/kindred-icons/Sketcher_CreateLineLengthWidth_Constr.svg deleted file mode 100644 index 516369cbf6..0000000000 --- a/kindred-icons/Sketcher_CreateLineLengthWidth_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CLLW - diff --git a/kindred-icons/Sketcher_CreateLine_Constr.svg b/kindred-icons/Sketcher_CreateLine_Constr.svg deleted file mode 100644 index 473f1ac0bb..0000000000 --- a/kindred-icons/Sketcher_CreateLine_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CLC - diff --git a/kindred-icons/Sketcher_CreateOblong.svg b/kindred-icons/Sketcher_CreateOblong.svg deleted file mode 100644 index 6abc88bbcf..0000000000 --- a/kindred-icons/Sketcher_CreateOblong.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CO - diff --git a/kindred-icons/Sketcher_CreateOblong_Constr.svg b/kindred-icons/Sketcher_CreateOblong_Constr.svg deleted file mode 100644 index 40477d3ab4..0000000000 --- a/kindred-icons/Sketcher_CreateOblong_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - COC - diff --git a/kindred-icons/Sketcher_CreateOctagon.svg b/kindred-icons/Sketcher_CreateOctagon.svg deleted file mode 100644 index 6abc88bbcf..0000000000 --- a/kindred-icons/Sketcher_CreateOctagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CO - diff --git a/kindred-icons/Sketcher_CreateOctagon_Constr.svg b/kindred-icons/Sketcher_CreateOctagon_Constr.svg deleted file mode 100644 index 40477d3ab4..0000000000 --- a/kindred-icons/Sketcher_CreateOctagon_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - COC - diff --git a/kindred-icons/Sketcher_CreateParabolic_Arc.svg b/kindred-icons/Sketcher_CreateParabolic_Arc.svg deleted file mode 100644 index e79f5a976a..0000000000 --- a/kindred-icons/Sketcher_CreateParabolic_Arc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPA - diff --git a/kindred-icons/Sketcher_CreateParabolic_Arc_Constr.svg b/kindred-icons/Sketcher_CreateParabolic_Arc_Constr.svg deleted file mode 100644 index 3812b6095d..0000000000 --- a/kindred-icons/Sketcher_CreateParabolic_Arc_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPAC - diff --git a/kindred-icons/Sketcher_CreatePentagon.svg b/kindred-icons/Sketcher_CreatePentagon.svg deleted file mode 100644 index b6f6d6382b..0000000000 --- a/kindred-icons/Sketcher_CreatePentagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/Sketcher_CreatePentagon_Constr.svg b/kindred-icons/Sketcher_CreatePentagon_Constr.svg deleted file mode 100644 index bc8cf421c0..0000000000 --- a/kindred-icons/Sketcher_CreatePentagon_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPC - diff --git a/kindred-icons/Sketcher_CreatePeriodicBSplineByInterpolation.svg b/kindred-icons/Sketcher_CreatePeriodicBSplineByInterpolation.svg deleted file mode 100644 index 5d25517822..0000000000 --- a/kindred-icons/Sketcher_CreatePeriodicBSplineByInterpolation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPBS - diff --git a/kindred-icons/Sketcher_CreatePeriodicBSplineByInterpolation_Constr.svg b/kindred-icons/Sketcher_CreatePeriodicBSplineByInterpolation_Constr.svg deleted file mode 100644 index 5d25517822..0000000000 --- a/kindred-icons/Sketcher_CreatePeriodicBSplineByInterpolation_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPBS - diff --git a/kindred-icons/Sketcher_CreatePoint.svg b/kindred-icons/Sketcher_CreatePoint.svg deleted file mode 100644 index 4cfafdfd81..0000000000 --- a/kindred-icons/Sketcher_CreatePoint.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/Sketcher_CreatePointFillet.svg b/kindred-icons/Sketcher_CreatePointFillet.svg deleted file mode 100644 index a073ebcef1..0000000000 --- a/kindred-icons/Sketcher_CreatePointFillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPF - diff --git a/kindred-icons/Sketcher_CreatePolyline.svg b/kindred-icons/Sketcher_CreatePolyline.svg deleted file mode 100644 index b6f6d6382b..0000000000 --- a/kindred-icons/Sketcher_CreatePolyline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CP - diff --git a/kindred-icons/Sketcher_CreatePolyline_Constr.svg b/kindred-icons/Sketcher_CreatePolyline_Constr.svg deleted file mode 100644 index bc8cf421c0..0000000000 --- a/kindred-icons/Sketcher_CreatePolyline_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPC - diff --git a/kindred-icons/Sketcher_CreateRectangle.svg b/kindred-icons/Sketcher_CreateRectangle.svg deleted file mode 100644 index 21158bdcc1..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/Sketcher_CreateRectangle3Points.svg b/kindred-icons/Sketcher_CreateRectangle3Points.svg deleted file mode 100644 index cad8a442dd..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle3Points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CR3P - diff --git a/kindred-icons/Sketcher_CreateRectangle3Points_Center.svg b/kindred-icons/Sketcher_CreateRectangle3Points_Center.svg deleted file mode 100644 index cad8a442dd..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle3Points_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CR3P - diff --git a/kindred-icons/Sketcher_CreateRectangle3Points_Center_Constr.svg b/kindred-icons/Sketcher_CreateRectangle3Points_Center_Constr.svg deleted file mode 100644 index cad8a442dd..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle3Points_Center_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CR3P - diff --git a/kindred-icons/Sketcher_CreateRectangle3Points_Constr.svg b/kindred-icons/Sketcher_CreateRectangle3Points_Constr.svg deleted file mode 100644 index cad8a442dd..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle3Points_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CR3P - diff --git a/kindred-icons/Sketcher_CreateRectangleSlot.svg b/kindred-icons/Sketcher_CreateRectangleSlot.svg deleted file mode 100644 index af5267202e..0000000000 --- a/kindred-icons/Sketcher_CreateRectangleSlot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRS - diff --git a/kindred-icons/Sketcher_CreateRectangleSlot_Constr.svg b/kindred-icons/Sketcher_CreateRectangleSlot_Constr.svg deleted file mode 100644 index 1bb9ea5c10..0000000000 --- a/kindred-icons/Sketcher_CreateRectangleSlot_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRSC - diff --git a/kindred-icons/Sketcher_CreateRectangle_Center.svg b/kindred-icons/Sketcher_CreateRectangle_Center.svg deleted file mode 100644 index 65a7cb6b07..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRC - diff --git a/kindred-icons/Sketcher_CreateRectangle_Center_Constr.svg b/kindred-icons/Sketcher_CreateRectangle_Center_Constr.svg deleted file mode 100644 index 5875492ce6..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle_Center_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRCC - diff --git a/kindred-icons/Sketcher_CreateRectangle_Constr.svg b/kindred-icons/Sketcher_CreateRectangle_Constr.svg deleted file mode 100644 index 65a7cb6b07..0000000000 --- a/kindred-icons/Sketcher_CreateRectangle_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRC - diff --git a/kindred-icons/Sketcher_CreateRegularPolygon.svg b/kindred-icons/Sketcher_CreateRegularPolygon.svg deleted file mode 100644 index e9c1913bbe..0000000000 --- a/kindred-icons/Sketcher_CreateRegularPolygon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRP - diff --git a/kindred-icons/Sketcher_CreateRegularPolygon_Constr.svg b/kindred-icons/Sketcher_CreateRegularPolygon_Constr.svg deleted file mode 100644 index 31905ea7bd..0000000000 --- a/kindred-icons/Sketcher_CreateRegularPolygon_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CRPC - diff --git a/kindred-icons/Sketcher_CreateSlot.svg b/kindred-icons/Sketcher_CreateSlot.svg deleted file mode 100644 index 8ef51cf6dc..0000000000 --- a/kindred-icons/Sketcher_CreateSlot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/Sketcher_CreateSlot_Constr.svg b/kindred-icons/Sketcher_CreateSlot_Constr.svg deleted file mode 100644 index 8c382abd35..0000000000 --- a/kindred-icons/Sketcher_CreateSlot_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CSC - diff --git a/kindred-icons/Sketcher_CreateSquare.svg b/kindred-icons/Sketcher_CreateSquare.svg deleted file mode 100644 index 8ef51cf6dc..0000000000 --- a/kindred-icons/Sketcher_CreateSquare.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/Sketcher_CreateSquare_Constr.svg b/kindred-icons/Sketcher_CreateSquare_Constr.svg deleted file mode 100644 index 8c382abd35..0000000000 --- a/kindred-icons/Sketcher_CreateSquare_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CSC - diff --git a/kindred-icons/Sketcher_CreateText.svg b/kindred-icons/Sketcher_CreateText.svg deleted file mode 100644 index 61a488b5c2..0000000000 --- a/kindred-icons/Sketcher_CreateText.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/Sketcher_CreateTriangle.svg b/kindred-icons/Sketcher_CreateTriangle.svg deleted file mode 100644 index 61a488b5c2..0000000000 --- a/kindred-icons/Sketcher_CreateTriangle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CT - diff --git a/kindred-icons/Sketcher_CreateTriangle_Constr.svg b/kindred-icons/Sketcher_CreateTriangle_Constr.svg deleted file mode 100644 index c527612718..0000000000 --- a/kindred-icons/Sketcher_CreateTriangle_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CTC - diff --git a/kindred-icons/Sketcher_Create_Periodic_BSpline.svg b/kindred-icons/Sketcher_Create_Periodic_BSpline.svg deleted file mode 100644 index 5d25517822..0000000000 --- a/kindred-icons/Sketcher_Create_Periodic_BSpline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPBS - diff --git a/kindred-icons/Sketcher_Create_Periodic_BSpline_Constr.svg b/kindred-icons/Sketcher_Create_Periodic_BSpline_Constr.svg deleted file mode 100644 index 5d25517822..0000000000 --- a/kindred-icons/Sketcher_Create_Periodic_BSpline_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CPBS - diff --git a/kindred-icons/Sketcher_Crosshair.svg b/kindred-icons/Sketcher_Crosshair.svg deleted file mode 100644 index 5f4b244d5b..0000000000 --- a/kindred-icons/Sketcher_Crosshair.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cros - diff --git a/kindred-icons/Sketcher_DeleteConstraints.svg b/kindred-icons/Sketcher_DeleteConstraints.svg deleted file mode 100644 index 3f3864d332..0000000000 --- a/kindred-icons/Sketcher_DeleteConstraints.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DC - diff --git a/kindred-icons/Sketcher_DeleteGeometry.svg b/kindred-icons/Sketcher_DeleteGeometry.svg deleted file mode 100644 index 8946dbd710..0000000000 --- a/kindred-icons/Sketcher_DeleteGeometry.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DG - diff --git a/kindred-icons/Sketcher_DraftLine.svg b/kindred-icons/Sketcher_DraftLine.svg deleted file mode 100644 index d6c78c80b4..0000000000 --- a/kindred-icons/Sketcher_DraftLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DL - diff --git a/kindred-icons/Sketcher_EditSketch.svg b/kindred-icons/Sketcher_EditSketch.svg deleted file mode 100644 index 8062142ef8..0000000000 --- a/kindred-icons/Sketcher_EditSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ES - diff --git a/kindred-icons/Sketcher_Element_Arc_Edge.svg b/kindred-icons/Sketcher_Element_Arc_Edge.svg deleted file mode 100644 index de9459470a..0000000000 --- a/kindred-icons/Sketcher_Element_Arc_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EAE - diff --git a/kindred-icons/Sketcher_Element_Arc_EndPoint.svg b/kindred-icons/Sketcher_Element_Arc_EndPoint.svg deleted file mode 100644 index 017bcfd0c3..0000000000 --- a/kindred-icons/Sketcher_Element_Arc_EndPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EAEP - diff --git a/kindred-icons/Sketcher_Element_Arc_MidPoint.svg b/kindred-icons/Sketcher_Element_Arc_MidPoint.svg deleted file mode 100644 index 08bafc2863..0000000000 --- a/kindred-icons/Sketcher_Element_Arc_MidPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EAMP - diff --git a/kindred-icons/Sketcher_Element_Arc_StartingPoint.svg b/kindred-icons/Sketcher_Element_Arc_StartingPoint.svg deleted file mode 100644 index 3171dfa0b7..0000000000 --- a/kindred-icons/Sketcher_Element_Arc_StartingPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EASP - diff --git a/kindred-icons/Sketcher_Element_BSpline_Edge.svg b/kindred-icons/Sketcher_Element_BSpline_Edge.svg deleted file mode 100644 index 2785a1fb80..0000000000 --- a/kindred-icons/Sketcher_Element_BSpline_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EBSE - diff --git a/kindred-icons/Sketcher_Element_BSpline_EndPoint.svg b/kindred-icons/Sketcher_Element_BSpline_EndPoint.svg deleted file mode 100644 index 2785a1fb80..0000000000 --- a/kindred-icons/Sketcher_Element_BSpline_EndPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EBSE - diff --git a/kindred-icons/Sketcher_Element_BSpline_StartPoint.svg b/kindred-icons/Sketcher_Element_BSpline_StartPoint.svg deleted file mode 100644 index 20a3a52543..0000000000 --- a/kindred-icons/Sketcher_Element_BSpline_StartPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EBSS - diff --git a/kindred-icons/Sketcher_Element_Circle_Edge.svg b/kindred-icons/Sketcher_Element_Circle_Edge.svg deleted file mode 100644 index 6902e7f741..0000000000 --- a/kindred-icons/Sketcher_Element_Circle_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECE - diff --git a/kindred-icons/Sketcher_Element_Circle_MidPoint.svg b/kindred-icons/Sketcher_Element_Circle_MidPoint.svg deleted file mode 100644 index 5945798067..0000000000 --- a/kindred-icons/Sketcher_Element_Circle_MidPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECMP - diff --git a/kindred-icons/Sketcher_Element_Ellipse_All.svg b/kindred-icons/Sketcher_Element_Ellipse_All.svg deleted file mode 100644 index 522583ca22..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_All.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEA - diff --git a/kindred-icons/Sketcher_Element_Ellipse_CentrePoint.svg b/kindred-icons/Sketcher_Element_Ellipse_CentrePoint.svg deleted file mode 100644 index 9c90cecb14..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_CentrePoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EECP - diff --git a/kindred-icons/Sketcher_Element_Ellipse_Edge_1.svg b/kindred-icons/Sketcher_Element_Ellipse_Edge_1.svg deleted file mode 100644 index 8d8a3fd257..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_Edge_1.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEE1 - diff --git a/kindred-icons/Sketcher_Element_Ellipse_Edge_2.svg b/kindred-icons/Sketcher_Element_Ellipse_Edge_2.svg deleted file mode 100644 index 5946b730e3..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_Edge_2.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEE2 - diff --git a/kindred-icons/Sketcher_Element_Ellipse_Focus1.svg b/kindred-icons/Sketcher_Element_Ellipse_Focus1.svg deleted file mode 100644 index 35672158af..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_Focus1.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEF1 - diff --git a/kindred-icons/Sketcher_Element_Ellipse_Focus2.svg b/kindred-icons/Sketcher_Element_Ellipse_Focus2.svg deleted file mode 100644 index 7aed3fdc10..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_Focus2.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEF2 - diff --git a/kindred-icons/Sketcher_Element_Ellipse_MajorAxis.svg b/kindred-icons/Sketcher_Element_Ellipse_MajorAxis.svg deleted file mode 100644 index 1a7362b0f8..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_MajorAxis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEMA - diff --git a/kindred-icons/Sketcher_Element_Ellipse_MinorAxis.svg b/kindred-icons/Sketcher_Element_Ellipse_MinorAxis.svg deleted file mode 100644 index 1a7362b0f8..0000000000 --- a/kindred-icons/Sketcher_Element_Ellipse_MinorAxis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEMA - diff --git a/kindred-icons/Sketcher_Element_Elliptical_Arc_Centre_Point.svg b/kindred-icons/Sketcher_Element_Elliptical_Arc_Centre_Point.svg deleted file mode 100644 index 33b3afd6ec..0000000000 --- a/kindred-icons/Sketcher_Element_Elliptical_Arc_Centre_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEAC - diff --git a/kindred-icons/Sketcher_Element_Elliptical_Arc_Edge.svg b/kindred-icons/Sketcher_Element_Elliptical_Arc_Edge.svg deleted file mode 100644 index d065bb35a0..0000000000 --- a/kindred-icons/Sketcher_Element_Elliptical_Arc_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEAE - diff --git a/kindred-icons/Sketcher_Element_Elliptical_Arc_End_Point.svg b/kindred-icons/Sketcher_Element_Elliptical_Arc_End_Point.svg deleted file mode 100644 index d065bb35a0..0000000000 --- a/kindred-icons/Sketcher_Element_Elliptical_Arc_End_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEAE - diff --git a/kindred-icons/Sketcher_Element_Elliptical_Arc_Start_Point.svg b/kindred-icons/Sketcher_Element_Elliptical_Arc_Start_Point.svg deleted file mode 100644 index 958bce50af..0000000000 --- a/kindred-icons/Sketcher_Element_Elliptical_Arc_Start_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEAS - diff --git a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Centre_Point.svg b/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Centre_Point.svg deleted file mode 100644 index d50c6c6f20..0000000000 --- a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Centre_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EHAC - diff --git a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Edge.svg b/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Edge.svg deleted file mode 100644 index 801130bb46..0000000000 --- a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EHAE - diff --git a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_End_Point.svg b/kindred-icons/Sketcher_Element_Hyperbolic_Arc_End_Point.svg deleted file mode 100644 index 801130bb46..0000000000 --- a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_End_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EHAE - diff --git a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Start_Point.svg b/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Start_Point.svg deleted file mode 100644 index f09252deb2..0000000000 --- a/kindred-icons/Sketcher_Element_Hyperbolic_Arc_Start_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EHAS - diff --git a/kindred-icons/Sketcher_Element_Line_Edge.svg b/kindred-icons/Sketcher_Element_Line_Edge.svg deleted file mode 100644 index bb6d44f5de..0000000000 --- a/kindred-icons/Sketcher_Element_Line_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ELE - diff --git a/kindred-icons/Sketcher_Element_Line_EndPoint.svg b/kindred-icons/Sketcher_Element_Line_EndPoint.svg deleted file mode 100644 index 0b2a4fe5f7..0000000000 --- a/kindred-icons/Sketcher_Element_Line_EndPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ELEP - diff --git a/kindred-icons/Sketcher_Element_Line_StartingPoint.svg b/kindred-icons/Sketcher_Element_Line_StartingPoint.svg deleted file mode 100644 index 185e44722a..0000000000 --- a/kindred-icons/Sketcher_Element_Line_StartingPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ELSP - diff --git a/kindred-icons/Sketcher_Element_Parabolic_Arc_Centre_Point.svg b/kindred-icons/Sketcher_Element_Parabolic_Arc_Centre_Point.svg deleted file mode 100644 index 953efe5abe..0000000000 --- a/kindred-icons/Sketcher_Element_Parabolic_Arc_Centre_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPAC - diff --git a/kindred-icons/Sketcher_Element_Parabolic_Arc_Edge.svg b/kindred-icons/Sketcher_Element_Parabolic_Arc_Edge.svg deleted file mode 100644 index 33b2c3fa51..0000000000 --- a/kindred-icons/Sketcher_Element_Parabolic_Arc_Edge.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPAE - diff --git a/kindred-icons/Sketcher_Element_Parabolic_Arc_End_Point.svg b/kindred-icons/Sketcher_Element_Parabolic_Arc_End_Point.svg deleted file mode 100644 index 33b2c3fa51..0000000000 --- a/kindred-icons/Sketcher_Element_Parabolic_Arc_End_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPAE - diff --git a/kindred-icons/Sketcher_Element_Parabolic_Arc_Start_Point.svg b/kindred-icons/Sketcher_Element_Parabolic_Arc_Start_Point.svg deleted file mode 100644 index e3dc5bcaa2..0000000000 --- a/kindred-icons/Sketcher_Element_Parabolic_Arc_Start_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPAS - diff --git a/kindred-icons/Sketcher_Element_Point_StartingPoint.svg b/kindred-icons/Sketcher_Element_Point_StartingPoint.svg deleted file mode 100644 index 9bf5e8188e..0000000000 --- a/kindred-icons/Sketcher_Element_Point_StartingPoint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPSP - diff --git a/kindred-icons/Sketcher_Element_SelectionTypeInvalid.svg b/kindred-icons/Sketcher_Element_SelectionTypeInvalid.svg deleted file mode 100644 index 0d526e0c4d..0000000000 --- a/kindred-icons/Sketcher_Element_SelectionTypeInvalid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ESTI - diff --git a/kindred-icons/Sketcher_Extend.svg b/kindred-icons/Sketcher_Extend.svg deleted file mode 100644 index 28ae6a6f4c..0000000000 --- a/kindred-icons/Sketcher_Extend.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Exte - diff --git a/kindred-icons/Sketcher_Intersection.svg b/kindred-icons/Sketcher_Intersection.svg deleted file mode 100644 index d91728e5f6..0000000000 --- a/kindred-icons/Sketcher_Intersection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Inte - diff --git a/kindred-icons/Sketcher_Intersection_Constr.svg b/kindred-icons/Sketcher_Intersection_Constr.svg deleted file mode 100644 index 89aad455d7..0000000000 --- a/kindred-icons/Sketcher_Intersection_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IC - diff --git a/kindred-icons/Sketcher_JoinCurves.svg b/kindred-icons/Sketcher_JoinCurves.svg deleted file mode 100644 index c8ad337532..0000000000 --- a/kindred-icons/Sketcher_JoinCurves.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - JC - diff --git a/kindred-icons/Sketcher_LeaveSketch.svg b/kindred-icons/Sketcher_LeaveSketch.svg deleted file mode 100644 index fd8bbf4451..0000000000 --- a/kindred-icons/Sketcher_LeaveSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LS - diff --git a/kindred-icons/Sketcher_MapSketch.svg b/kindred-icons/Sketcher_MapSketch.svg deleted file mode 100644 index 2cf1d10cff..0000000000 --- a/kindred-icons/Sketcher_MapSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/Sketcher_MergeSketch.svg b/kindred-icons/Sketcher_MergeSketch.svg deleted file mode 100644 index 2cf1d10cff..0000000000 --- a/kindred-icons/Sketcher_MergeSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/Sketcher_MirrorSketch.svg b/kindred-icons/Sketcher_MirrorSketch.svg deleted file mode 100644 index 2cf1d10cff..0000000000 --- a/kindred-icons/Sketcher_MirrorSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MS - diff --git a/kindred-icons/Sketcher_Move.svg b/kindred-icons/Sketcher_Move.svg deleted file mode 100644 index 514cdb4c75..0000000000 --- a/kindred-icons/Sketcher_Move.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Move - diff --git a/kindred-icons/Sketcher_NewSketch.svg b/kindred-icons/Sketcher_NewSketch.svg deleted file mode 100644 index c050900fbb..0000000000 --- a/kindred-icons/Sketcher_NewSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - NS - diff --git a/kindred-icons/Sketcher_NotFullyConstrained.svg b/kindred-icons/Sketcher_NotFullyConstrained.svg deleted file mode 100644 index 4d3acbe285..0000000000 --- a/kindred-icons/Sketcher_NotFullyConstrained.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - NFC - diff --git a/kindred-icons/Sketcher_Offset.svg b/kindred-icons/Sketcher_Offset.svg deleted file mode 100644 index feb0aeffe7..0000000000 --- a/kindred-icons/Sketcher_Offset.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Offs - diff --git a/kindred-icons/Sketcher_OffsetArc.svg b/kindred-icons/Sketcher_OffsetArc.svg deleted file mode 100644 index 281765e753..0000000000 --- a/kindred-icons/Sketcher_OffsetArc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OA - diff --git a/kindred-icons/Sketcher_OffsetIntersection.svg b/kindred-icons/Sketcher_OffsetIntersection.svg deleted file mode 100644 index ede3498391..0000000000 --- a/kindred-icons/Sketcher_OffsetIntersection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - OI - diff --git a/kindred-icons/Sketcher_Pointer_CarbonCopy.svg b/kindred-icons/Sketcher_Pointer_CarbonCopy.svg deleted file mode 100644 index 007b969fcd..0000000000 --- a/kindred-icons/Sketcher_Pointer_CarbonCopy.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCC - diff --git a/kindred-icons/Sketcher_Pointer_Create_3PointArc.svg b/kindred-icons/Sketcher_Pointer_Create_3PointArc.svg deleted file mode 100644 index 8ebf893716..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_3PointArc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC3P - diff --git a/kindred-icons/Sketcher_Pointer_Create_3PointCircle.svg b/kindred-icons/Sketcher_Pointer_Create_3PointCircle.svg deleted file mode 100644 index 8ebf893716..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_3PointCircle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC3P - diff --git a/kindred-icons/Sketcher_Pointer_Create_Arc.svg b/kindred-icons/Sketcher_Pointer_Create_Arc.svg deleted file mode 100644 index 4413f30b24..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Arc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCA - diff --git a/kindred-icons/Sketcher_Pointer_Create_ArcOfEllipse.svg b/kindred-icons/Sketcher_Pointer_Create_ArcOfEllipse.svg deleted file mode 100644 index 112dca4f5f..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_ArcOfEllipse.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCAO - diff --git a/kindred-icons/Sketcher_Pointer_Create_ArcOfHyperbola.svg b/kindred-icons/Sketcher_Pointer_Create_ArcOfHyperbola.svg deleted file mode 100644 index 112dca4f5f..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_ArcOfHyperbola.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCAO - diff --git a/kindred-icons/Sketcher_Pointer_Create_ArcOfParabola.svg b/kindred-icons/Sketcher_Pointer_Create_ArcOfParabola.svg deleted file mode 100644 index 112dca4f5f..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_ArcOfParabola.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCAO - diff --git a/kindred-icons/Sketcher_Pointer_Create_ArcSlot.svg b/kindred-icons/Sketcher_Pointer_Create_ArcSlot.svg deleted file mode 100644 index b0d2653050..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_ArcSlot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCAS - diff --git a/kindred-icons/Sketcher_Pointer_Create_BSpline.svg b/kindred-icons/Sketcher_Pointer_Create_BSpline.svg deleted file mode 100644 index 18fa3dba50..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_BSpline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCBS - diff --git a/kindred-icons/Sketcher_Pointer_Create_BSplineByInterpolation.svg b/kindred-icons/Sketcher_Pointer_Create_BSplineByInterpolation.svg deleted file mode 100644 index 18fa3dba50..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_BSplineByInterpolation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCBS - diff --git a/kindred-icons/Sketcher_Pointer_Create_Box.svg b/kindred-icons/Sketcher_Pointer_Create_Box.svg deleted file mode 100644 index e2fbc676c5..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Box.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCB - diff --git a/kindred-icons/Sketcher_Pointer_Create_Box_3Points.svg b/kindred-icons/Sketcher_Pointer_Create_Box_3Points.svg deleted file mode 100644 index 615d5acba3..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Box_3Points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCB3 - diff --git a/kindred-icons/Sketcher_Pointer_Create_Box_3Points_Center.svg b/kindred-icons/Sketcher_Pointer_Create_Box_3Points_Center.svg deleted file mode 100644 index 615d5acba3..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Box_3Points_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCB3 - diff --git a/kindred-icons/Sketcher_Pointer_Create_Box_Center.svg b/kindred-icons/Sketcher_Pointer_Create_Box_Center.svg deleted file mode 100644 index 0d37a0449e..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Box_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCBC - diff --git a/kindred-icons/Sketcher_Pointer_Create_Chamfer.svg b/kindred-icons/Sketcher_Pointer_Create_Chamfer.svg deleted file mode 100644 index 007b969fcd..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Chamfer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCC - diff --git a/kindred-icons/Sketcher_Pointer_Create_Circle.svg b/kindred-icons/Sketcher_Pointer_Create_Circle.svg deleted file mode 100644 index 007b969fcd..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Circle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCC - diff --git a/kindred-icons/Sketcher_Pointer_Create_EllipseByCenter.svg b/kindred-icons/Sketcher_Pointer_Create_EllipseByCenter.svg deleted file mode 100644 index 0867328219..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_EllipseByCenter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCEB - diff --git a/kindred-icons/Sketcher_Pointer_Create_Ellipse_3points.svg b/kindred-icons/Sketcher_Pointer_Create_Ellipse_3points.svg deleted file mode 100644 index 5b50979fe5..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Ellipse_3points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCE3 - diff --git a/kindred-icons/Sketcher_Pointer_Create_Fillet.svg b/kindred-icons/Sketcher_Pointer_Create_Fillet.svg deleted file mode 100644 index 601a79b6df..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Fillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCF - diff --git a/kindred-icons/Sketcher_Pointer_Create_Frame.svg b/kindred-icons/Sketcher_Pointer_Create_Frame.svg deleted file mode 100644 index 601a79b6df..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Frame.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCF - diff --git a/kindred-icons/Sketcher_Pointer_Create_Frame_Center.svg b/kindred-icons/Sketcher_Pointer_Create_Frame_Center.svg deleted file mode 100644 index 414f93f073..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Frame_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCFC - diff --git a/kindred-icons/Sketcher_Pointer_Create_Line.svg b/kindred-icons/Sketcher_Pointer_Create_Line.svg deleted file mode 100644 index 842ae0ccaa..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCL - diff --git a/kindred-icons/Sketcher_Pointer_Create_Line_Polar.svg b/kindred-icons/Sketcher_Pointer_Create_Line_Polar.svg deleted file mode 100644 index 0f5e65abb4..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Line_Polar.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCLP - diff --git a/kindred-icons/Sketcher_Pointer_Create_Lineset.svg b/kindred-icons/Sketcher_Pointer_Create_Lineset.svg deleted file mode 100644 index 842ae0ccaa..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Lineset.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCL - diff --git a/kindred-icons/Sketcher_Pointer_Create_Offset.svg b/kindred-icons/Sketcher_Pointer_Create_Offset.svg deleted file mode 100644 index f25e32d3e6..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Offset.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCO - diff --git a/kindred-icons/Sketcher_Pointer_Create_Periodic_BSpline.svg b/kindred-icons/Sketcher_Pointer_Create_Periodic_BSpline.svg deleted file mode 100644 index 07f9abd22f..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Periodic_BSpline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCPB - diff --git a/kindred-icons/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg b/kindred-icons/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg deleted file mode 100644 index 07f9abd22f..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Periodic_BSplineByInterpolation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCPB - diff --git a/kindred-icons/Sketcher_Pointer_Create_Point.svg b/kindred-icons/Sketcher_Pointer_Create_Point.svg deleted file mode 100644 index 653b7b5f58..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Point.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCP - diff --git a/kindred-icons/Sketcher_Pointer_Create_PointChamfer.svg b/kindred-icons/Sketcher_Pointer_Create_PointChamfer.svg deleted file mode 100644 index 4131f6fd0d..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_PointChamfer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCPC - diff --git a/kindred-icons/Sketcher_Pointer_Create_PointFillet.svg b/kindred-icons/Sketcher_Pointer_Create_PointFillet.svg deleted file mode 100644 index 1042f4343e..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_PointFillet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCPF - diff --git a/kindred-icons/Sketcher_Pointer_Create_RectangleSlot.svg b/kindred-icons/Sketcher_Pointer_Create_RectangleSlot.svg deleted file mode 100644 index f171f87938..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_RectangleSlot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCRS - diff --git a/kindred-icons/Sketcher_Pointer_Create_Rotate.svg b/kindred-icons/Sketcher_Pointer_Create_Rotate.svg deleted file mode 100644 index 2b1eb53980..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Rotate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCR - diff --git a/kindred-icons/Sketcher_Pointer_Create_Scale.svg b/kindred-icons/Sketcher_Pointer_Create_Scale.svg deleted file mode 100644 index 01f880c22c..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Scale.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCS - diff --git a/kindred-icons/Sketcher_Pointer_Create_Symmetry.svg b/kindred-icons/Sketcher_Pointer_Create_Symmetry.svg deleted file mode 100644 index 01f880c22c..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Symmetry.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCS - diff --git a/kindred-icons/Sketcher_Pointer_Create_Translate.svg b/kindred-icons/Sketcher_Pointer_Create_Translate.svg deleted file mode 100644 index 28714f0a88..0000000000 --- a/kindred-icons/Sketcher_Pointer_Create_Translate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PCT - diff --git a/kindred-icons/Sketcher_Pointer_Extension.svg b/kindred-icons/Sketcher_Pointer_Extension.svg deleted file mode 100644 index f65dabd427..0000000000 --- a/kindred-icons/Sketcher_Pointer_Extension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PE - diff --git a/kindred-icons/Sketcher_Pointer_External.svg b/kindred-icons/Sketcher_Pointer_External.svg deleted file mode 100644 index f65dabd427..0000000000 --- a/kindred-icons/Sketcher_Pointer_External.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PE - diff --git a/kindred-icons/Sketcher_Pointer_External_Intersection.svg b/kindred-icons/Sketcher_Pointer_External_Intersection.svg deleted file mode 100644 index 6e865ea624..0000000000 --- a/kindred-icons/Sketcher_Pointer_External_Intersection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PEI - diff --git a/kindred-icons/Sketcher_Pointer_Heptagon.svg b/kindred-icons/Sketcher_Pointer_Heptagon.svg deleted file mode 100644 index 630c267ada..0000000000 --- a/kindred-icons/Sketcher_Pointer_Heptagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PH - diff --git a/kindred-icons/Sketcher_Pointer_Hexagon.svg b/kindred-icons/Sketcher_Pointer_Hexagon.svg deleted file mode 100644 index 630c267ada..0000000000 --- a/kindred-icons/Sketcher_Pointer_Hexagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PH - diff --git a/kindred-icons/Sketcher_Pointer_InsertKnot.svg b/kindred-icons/Sketcher_Pointer_InsertKnot.svg deleted file mode 100644 index a76af2ed47..0000000000 --- a/kindred-icons/Sketcher_Pointer_InsertKnot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PIK - diff --git a/kindred-icons/Sketcher_Pointer_Oblong.svg b/kindred-icons/Sketcher_Pointer_Oblong.svg deleted file mode 100644 index 800b3709ee..0000000000 --- a/kindred-icons/Sketcher_Pointer_Oblong.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PO - diff --git a/kindred-icons/Sketcher_Pointer_Oblong_Center.svg b/kindred-icons/Sketcher_Pointer_Oblong_Center.svg deleted file mode 100644 index 04fcaac7d5..0000000000 --- a/kindred-icons/Sketcher_Pointer_Oblong_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POC - diff --git a/kindred-icons/Sketcher_Pointer_Oblong_Frame.svg b/kindred-icons/Sketcher_Pointer_Oblong_Frame.svg deleted file mode 100644 index dbe4332807..0000000000 --- a/kindred-icons/Sketcher_Pointer_Oblong_Frame.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POF - diff --git a/kindred-icons/Sketcher_Pointer_Oblong_Frame_Center.svg b/kindred-icons/Sketcher_Pointer_Oblong_Frame_Center.svg deleted file mode 100644 index e0b2ed7728..0000000000 --- a/kindred-icons/Sketcher_Pointer_Oblong_Frame_Center.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - POFC - diff --git a/kindred-icons/Sketcher_Pointer_Octagon.svg b/kindred-icons/Sketcher_Pointer_Octagon.svg deleted file mode 100644 index 800b3709ee..0000000000 --- a/kindred-icons/Sketcher_Pointer_Octagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PO - diff --git a/kindred-icons/Sketcher_Pointer_Pentagon.svg b/kindred-icons/Sketcher_Pointer_Pentagon.svg deleted file mode 100644 index f1bbc9befb..0000000000 --- a/kindred-icons/Sketcher_Pointer_Pentagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PP - diff --git a/kindred-icons/Sketcher_Pointer_Regular_Polygon.svg b/kindred-icons/Sketcher_Pointer_Regular_Polygon.svg deleted file mode 100644 index 681ee40fdd..0000000000 --- a/kindred-icons/Sketcher_Pointer_Regular_Polygon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PRP - diff --git a/kindred-icons/Sketcher_Pointer_Slot.svg b/kindred-icons/Sketcher_Pointer_Slot.svg deleted file mode 100644 index eee5887c1b..0000000000 --- a/kindred-icons/Sketcher_Pointer_Slot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PS - diff --git a/kindred-icons/Sketcher_Pointer_Splitting.svg b/kindred-icons/Sketcher_Pointer_Splitting.svg deleted file mode 100644 index eee5887c1b..0000000000 --- a/kindred-icons/Sketcher_Pointer_Splitting.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PS - diff --git a/kindred-icons/Sketcher_Pointer_Text.svg b/kindred-icons/Sketcher_Pointer_Text.svg deleted file mode 100644 index f9f22a24e0..0000000000 --- a/kindred-icons/Sketcher_Pointer_Text.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Sketcher_Pointer_Triangle.svg b/kindred-icons/Sketcher_Pointer_Triangle.svg deleted file mode 100644 index f9f22a24e0..0000000000 --- a/kindred-icons/Sketcher_Pointer_Triangle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Sketcher_Pointer_Trimming.svg b/kindred-icons/Sketcher_Pointer_Trimming.svg deleted file mode 100644 index f9f22a24e0..0000000000 --- a/kindred-icons/Sketcher_Pointer_Trimming.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/Sketcher_ProfilesHexagon1.svg b/kindred-icons/Sketcher_ProfilesHexagon1.svg deleted file mode 100644 index f9523430a5..0000000000 --- a/kindred-icons/Sketcher_ProfilesHexagon1.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PH1 - diff --git a/kindred-icons/Sketcher_Projection.svg b/kindred-icons/Sketcher_Projection.svg deleted file mode 100644 index 93e8fa0876..0000000000 --- a/kindred-icons/Sketcher_Projection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Proj - diff --git a/kindred-icons/Sketcher_Projection_Constr.svg b/kindred-icons/Sketcher_Projection_Constr.svg deleted file mode 100644 index b5ece7015f..0000000000 --- a/kindred-icons/Sketcher_Projection_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PC - diff --git a/kindred-icons/Sketcher_RectangularArray.svg b/kindred-icons/Sketcher_RectangularArray.svg deleted file mode 100644 index b4144eadca..0000000000 --- a/kindred-icons/Sketcher_RectangularArray.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RA - diff --git a/kindred-icons/Sketcher_RemoveAxesAlignment.svg b/kindred-icons/Sketcher_RemoveAxesAlignment.svg deleted file mode 100644 index 813910c6c6..0000000000 --- a/kindred-icons/Sketcher_RemoveAxesAlignment.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RAA - diff --git a/kindred-icons/Sketcher_ReorientSketch.svg b/kindred-icons/Sketcher_ReorientSketch.svg deleted file mode 100644 index e0787fe558..0000000000 --- a/kindred-icons/Sketcher_ReorientSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RS - diff --git a/kindred-icons/Sketcher_Rotate.svg b/kindred-icons/Sketcher_Rotate.svg deleted file mode 100644 index eefde90162..0000000000 --- a/kindred-icons/Sketcher_Rotate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Rota - diff --git a/kindred-icons/Sketcher_Scale.svg b/kindred-icons/Sketcher_Scale.svg deleted file mode 100644 index 5809034a78..0000000000 --- a/kindred-icons/Sketcher_Scale.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Scal - diff --git a/kindred-icons/Sketcher_SelectConflictingConstraints.svg b/kindred-icons/Sketcher_SelectConflictingConstraints.svg deleted file mode 100644 index e201b0520f..0000000000 --- a/kindred-icons/Sketcher_SelectConflictingConstraints.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SCC - diff --git a/kindred-icons/Sketcher_SelectConstraints.svg b/kindred-icons/Sketcher_SelectConstraints.svg deleted file mode 100644 index ddc5820f68..0000000000 --- a/kindred-icons/Sketcher_SelectConstraints.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/Sketcher_SelectElementsAssociatedWithConstraints.svg b/kindred-icons/Sketcher_SelectElementsAssociatedWithConstraints.svg deleted file mode 100644 index 6ebdbcc734..0000000000 --- a/kindred-icons/Sketcher_SelectElementsAssociatedWithConstraints.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SEAW - diff --git a/kindred-icons/Sketcher_SelectElementsWithDoFs.svg b/kindred-icons/Sketcher_SelectElementsWithDoFs.svg deleted file mode 100644 index f3adae43b4..0000000000 --- a/kindred-icons/Sketcher_SelectElementsWithDoFs.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SEWD - diff --git a/kindred-icons/Sketcher_SelectHorizontalAxis.svg b/kindred-icons/Sketcher_SelectHorizontalAxis.svg deleted file mode 100644 index 84fa950ee5..0000000000 --- a/kindred-icons/Sketcher_SelectHorizontalAxis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SHA - diff --git a/kindred-icons/Sketcher_SelectOrigin.svg b/kindred-icons/Sketcher_SelectOrigin.svg deleted file mode 100644 index dbf47a844c..0000000000 --- a/kindred-icons/Sketcher_SelectOrigin.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SO - diff --git a/kindred-icons/Sketcher_SelectRedundantConstraints.svg b/kindred-icons/Sketcher_SelectRedundantConstraints.svg deleted file mode 100644 index 284c6bb682..0000000000 --- a/kindred-icons/Sketcher_SelectRedundantConstraints.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SRC - diff --git a/kindred-icons/Sketcher_SelectVerticalAxis.svg b/kindred-icons/Sketcher_SelectVerticalAxis.svg deleted file mode 100644 index f36ce6f1db..0000000000 --- a/kindred-icons/Sketcher_SelectVerticalAxis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SVA - diff --git a/kindred-icons/Sketcher_Settings.svg b/kindred-icons/Sketcher_Settings.svg deleted file mode 100644 index 8a1f2c5297..0000000000 --- a/kindred-icons/Sketcher_Settings.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sett - diff --git a/kindred-icons/Sketcher_Sketch.svg b/kindred-icons/Sketcher_Sketch.svg deleted file mode 100644 index 60285ab12e..0000000000 --- a/kindred-icons/Sketcher_Sketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sket - diff --git a/kindred-icons/Sketcher_Split.svg b/kindred-icons/Sketcher_Split.svg deleted file mode 100644 index b0be39618c..0000000000 --- a/kindred-icons/Sketcher_Split.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Spli - diff --git a/kindred-icons/Sketcher_SwitchVirtualSpace.svg b/kindred-icons/Sketcher_SwitchVirtualSpace.svg deleted file mode 100644 index 9e03a6b89b..0000000000 --- a/kindred-icons/Sketcher_SwitchVirtualSpace.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SVS - diff --git a/kindred-icons/Sketcher_Symmetry.svg b/kindred-icons/Sketcher_Symmetry.svg deleted file mode 100644 index 249bc5618b..0000000000 --- a/kindred-icons/Sketcher_Symmetry.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Symm - diff --git a/kindred-icons/Sketcher_ToggleActiveConstraint.svg b/kindred-icons/Sketcher_ToggleActiveConstraint.svg deleted file mode 100644 index 5f8d98f873..0000000000 --- a/kindred-icons/Sketcher_ToggleActiveConstraint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TAC - diff --git a/kindred-icons/Sketcher_ToggleConstraint.svg b/kindred-icons/Sketcher_ToggleConstraint.svg deleted file mode 100644 index a7def2eda0..0000000000 --- a/kindred-icons/Sketcher_ToggleConstraint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TC - diff --git a/kindred-icons/Sketcher_ToggleConstraint_Driven.svg b/kindred-icons/Sketcher_ToggleConstraint_Driven.svg deleted file mode 100644 index ade9a67d2c..0000000000 --- a/kindred-icons/Sketcher_ToggleConstraint_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCD - diff --git a/kindred-icons/Sketcher_ToggleConstruction.svg b/kindred-icons/Sketcher_ToggleConstruction.svg deleted file mode 100644 index a7def2eda0..0000000000 --- a/kindred-icons/Sketcher_ToggleConstruction.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TC - diff --git a/kindred-icons/Sketcher_ToggleConstruction_Constr.svg b/kindred-icons/Sketcher_ToggleConstruction_Constr.svg deleted file mode 100644 index 5094ad888c..0000000000 --- a/kindred-icons/Sketcher_ToggleConstruction_Constr.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCC - diff --git a/kindred-icons/Sketcher_ToggleConstruction_old.svg b/kindred-icons/Sketcher_ToggleConstruction_old.svg deleted file mode 100644 index 97c8853124..0000000000 --- a/kindred-icons/Sketcher_ToggleConstruction_old.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCO - diff --git a/kindred-icons/Sketcher_ToggleNormal.svg b/kindred-icons/Sketcher_ToggleNormal.svg deleted file mode 100644 index a9b2f4bac0..0000000000 --- a/kindred-icons/Sketcher_ToggleNormal.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TN - diff --git a/kindred-icons/Sketcher_Toggle_Constraint_Driven.svg b/kindred-icons/Sketcher_Toggle_Constraint_Driven.svg deleted file mode 100644 index ade9a67d2c..0000000000 --- a/kindred-icons/Sketcher_Toggle_Constraint_Driven.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCD - diff --git a/kindred-icons/Sketcher_Toggle_Constraint_Driving.svg b/kindred-icons/Sketcher_Toggle_Constraint_Driving.svg deleted file mode 100644 index ade9a67d2c..0000000000 --- a/kindred-icons/Sketcher_Toggle_Constraint_Driving.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TCD - diff --git a/kindred-icons/Sketcher_Translate.svg b/kindred-icons/Sketcher_Translate.svg deleted file mode 100644 index 6357e97064..0000000000 --- a/kindred-icons/Sketcher_Translate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tran - diff --git a/kindred-icons/Sketcher_Trimming.svg b/kindred-icons/Sketcher_Trimming.svg deleted file mode 100644 index 6643d6972f..0000000000 --- a/kindred-icons/Sketcher_Trimming.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Trim - diff --git a/kindred-icons/Sketcher_ValidateSketch.svg b/kindred-icons/Sketcher_ValidateSketch.svg deleted file mode 100644 index 482e1b0e53..0000000000 --- a/kindred-icons/Sketcher_ValidateSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VS - diff --git a/kindred-icons/Sketcher_ViewSection.svg b/kindred-icons/Sketcher_ViewSection.svg deleted file mode 100644 index 482e1b0e53..0000000000 --- a/kindred-icons/Sketcher_ViewSection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VS - diff --git a/kindred-icons/Sketcher_ViewSketch.svg b/kindred-icons/Sketcher_ViewSketch.svg deleted file mode 100644 index 482e1b0e53..0000000000 --- a/kindred-icons/Sketcher_ViewSketch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VS - diff --git a/kindred-icons/Spreadsheet.svg b/kindred-icons/Spreadsheet.svg deleted file mode 100644 index 7128460f30..0000000000 --- a/kindred-icons/Spreadsheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/SpreadsheetAlias.svg b/kindred-icons/SpreadsheetAlias.svg deleted file mode 100644 index 1fefd617b2..0000000000 --- a/kindred-icons/SpreadsheetAlias.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Alia - diff --git a/kindred-icons/SpreadsheetAlignBottom.svg b/kindred-icons/SpreadsheetAlignBottom.svg deleted file mode 100644 index 6eca962240..0000000000 --- a/kindred-icons/SpreadsheetAlignBottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AB - diff --git a/kindred-icons/SpreadsheetAlignCenter.svg b/kindred-icons/SpreadsheetAlignCenter.svg deleted file mode 100644 index 1fca82e4c9..0000000000 --- a/kindred-icons/SpreadsheetAlignCenter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AC - diff --git a/kindred-icons/SpreadsheetAlignLeft.svg b/kindred-icons/SpreadsheetAlignLeft.svg deleted file mode 100644 index 25cfdfaa0d..0000000000 --- a/kindred-icons/SpreadsheetAlignLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AL - diff --git a/kindred-icons/SpreadsheetAlignRight.svg b/kindred-icons/SpreadsheetAlignRight.svg deleted file mode 100644 index 639a416a9f..0000000000 --- a/kindred-icons/SpreadsheetAlignRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AR - diff --git a/kindred-icons/SpreadsheetAlignTop.svg b/kindred-icons/SpreadsheetAlignTop.svg deleted file mode 100644 index 9b3ca181be..0000000000 --- a/kindred-icons/SpreadsheetAlignTop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AT - diff --git a/kindred-icons/SpreadsheetAlignVCenter.svg b/kindred-icons/SpreadsheetAlignVCenter.svg deleted file mode 100644 index 8da591e1fe..0000000000 --- a/kindred-icons/SpreadsheetAlignVCenter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AVC - diff --git a/kindred-icons/SpreadsheetController.svg b/kindred-icons/SpreadsheetController.svg deleted file mode 100644 index 94dce96396..0000000000 --- a/kindred-icons/SpreadsheetController.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cont - diff --git a/kindred-icons/SpreadsheetExport.svg b/kindred-icons/SpreadsheetExport.svg deleted file mode 100644 index e7d798b7ef..0000000000 --- a/kindred-icons/SpreadsheetExport.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Expo - diff --git a/kindred-icons/SpreadsheetImport.svg b/kindred-icons/SpreadsheetImport.svg deleted file mode 100644 index b9c32c079d..0000000000 --- a/kindred-icons/SpreadsheetImport.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Impo - diff --git a/kindred-icons/SpreadsheetMergeCells.svg b/kindred-icons/SpreadsheetMergeCells.svg deleted file mode 100644 index 6508230bd3..0000000000 --- a/kindred-icons/SpreadsheetMergeCells.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MC - diff --git a/kindred-icons/SpreadsheetSplitCell.svg b/kindred-icons/SpreadsheetSplitCell.svg deleted file mode 100644 index 3755d72acf..0000000000 --- a/kindred-icons/SpreadsheetSplitCell.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SC - diff --git a/kindred-icons/SpreadsheetStyleBold.svg b/kindred-icons/SpreadsheetStyleBold.svg deleted file mode 100644 index 6e32456216..0000000000 --- a/kindred-icons/SpreadsheetStyleBold.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SB - diff --git a/kindred-icons/SpreadsheetStyleItalic.svg b/kindred-icons/SpreadsheetStyleItalic.svg deleted file mode 100644 index 3b3fa0bc5f..0000000000 --- a/kindred-icons/SpreadsheetStyleItalic.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SI - diff --git a/kindred-icons/SpreadsheetStyleUnderline.svg b/kindred-icons/SpreadsheetStyleUnderline.svg deleted file mode 100644 index 0a020481de..0000000000 --- a/kindred-icons/SpreadsheetStyleUnderline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SU - diff --git a/kindred-icons/SpreadsheetWorkbench.svg b/kindred-icons/SpreadsheetWorkbench.svg deleted file mode 100644 index 29a01172f2..0000000000 --- a/kindred-icons/SpreadsheetWorkbench.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - A - B - C - - - diff --git a/kindred-icons/StartCommandIcon.svg b/kindred-icons/StartCommandIcon.svg deleted file mode 100644 index 20232d22a1..0000000000 --- a/kindred-icons/StartCommandIcon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SCI - diff --git a/kindred-icons/Std_DuplicateSelection.svg b/kindred-icons/Std_DuplicateSelection.svg deleted file mode 100644 index de885584d8..0000000000 --- a/kindred-icons/Std_DuplicateSelection.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/Std_Export.svg b/kindred-icons/Std_Export.svg deleted file mode 100644 index 8b6102b9b2..0000000000 --- a/kindred-icons/Std_Export.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Std_HideObjects.svg b/kindred-icons/Std_HideObjects.svg deleted file mode 100644 index abf4737be6..0000000000 --- a/kindred-icons/Std_HideObjects.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/Std_Import.svg b/kindred-icons/Std_Import.svg deleted file mode 100644 index c7642c7904..0000000000 --- a/kindred-icons/Std_Import.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Std_Refresh.svg b/kindred-icons/Std_Refresh.svg deleted file mode 100644 index 26d31d53fc..0000000000 --- a/kindred-icons/Std_Refresh.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/Std_SaveAll.svg b/kindred-icons/Std_SaveAll.svg deleted file mode 100644 index 6626a06fd8..0000000000 --- a/kindred-icons/Std_SaveAll.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - 2 - diff --git a/kindred-icons/Std_SelectVisibleObjects.svg b/kindred-icons/Std_SelectVisibleObjects.svg deleted file mode 100644 index 93868ab461..0000000000 --- a/kindred-icons/Std_SelectVisibleObjects.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/Std_SetAppearance.svg b/kindred-icons/Std_SetAppearance.svg deleted file mode 100644 index 99f35029e8..0000000000 --- a/kindred-icons/Std_SetAppearance.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Std_ShowObjects.svg b/kindred-icons/Std_ShowObjects.svg deleted file mode 100644 index bd376adb13..0000000000 --- a/kindred-icons/Std_ShowObjects.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/Std_ShowSelection.svg b/kindred-icons/Std_ShowSelection.svg deleted file mode 100644 index 51397bcc29..0000000000 --- a/kindred-icons/Std_ShowSelection.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/Std_ToggleClipPlane.svg b/kindred-icons/Std_ToggleClipPlane.svg deleted file mode 100644 index 814fcbfebf..0000000000 --- a/kindred-icons/Std_ToggleClipPlane.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/Std_ToggleFreeze.svg b/kindred-icons/Std_ToggleFreeze.svg deleted file mode 100644 index 094c595d95..0000000000 --- a/kindred-icons/Std_ToggleFreeze.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/Std_ToggleNavigation.svg b/kindred-icons/Std_ToggleNavigation.svg deleted file mode 100644 index fd76e3915d..0000000000 --- a/kindred-icons/Std_ToggleNavigation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/Std_ToggleObjects.svg b/kindred-icons/Std_ToggleObjects.svg deleted file mode 100644 index afb55960a5..0000000000 --- a/kindred-icons/Std_ToggleObjects.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/Std_ToggleTransparency.svg b/kindred-icons/Std_ToggleTransparency.svg deleted file mode 100644 index 6f5c5a0a12..0000000000 --- a/kindred-icons/Std_ToggleTransparency.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/Std_ToggleVisibility.svg b/kindred-icons/Std_ToggleVisibility.svg deleted file mode 100644 index 6ceabcc34c..0000000000 --- a/kindred-icons/Std_ToggleVisibility.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/Std_TransformManip.svg b/kindred-icons/Std_TransformManip.svg deleted file mode 100644 index 6e8eb285d9..0000000000 --- a/kindred-icons/Std_TransformManip.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/Std_ViewBottom.svg b/kindred-icons/Std_ViewBottom.svg deleted file mode 100644 index a610cdc1cf..0000000000 --- a/kindred-icons/Std_ViewBottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Bo - diff --git a/kindred-icons/Std_ViewDimetric.svg b/kindred-icons/Std_ViewDimetric.svg deleted file mode 100644 index e6b738e343..0000000000 --- a/kindred-icons/Std_ViewDimetric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/Std_ViewFront.svg b/kindred-icons/Std_ViewFront.svg deleted file mode 100644 index 606f184377..0000000000 --- a/kindred-icons/Std_ViewFront.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - F - diff --git a/kindred-icons/Std_ViewHome.svg b/kindred-icons/Std_ViewHome.svg deleted file mode 100644 index c33261515d..0000000000 --- a/kindred-icons/Std_ViewHome.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/Std_ViewIsometric.svg b/kindred-icons/Std_ViewIsometric.svg deleted file mode 100644 index be2208f440..0000000000 --- a/kindred-icons/Std_ViewIsometric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/Std_ViewLeft.svg b/kindred-icons/Std_ViewLeft.svg deleted file mode 100644 index ab4bfd8e5d..0000000000 --- a/kindred-icons/Std_ViewLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - L - diff --git a/kindred-icons/Std_ViewRear.svg b/kindred-icons/Std_ViewRear.svg deleted file mode 100644 index 36b8e2ea78..0000000000 --- a/kindred-icons/Std_ViewRear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - B - diff --git a/kindred-icons/Std_ViewRight.svg b/kindred-icons/Std_ViewRight.svg deleted file mode 100644 index 5e706efa36..0000000000 --- a/kindred-icons/Std_ViewRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - R - diff --git a/kindred-icons/Std_ViewScreenShot.svg b/kindred-icons/Std_ViewScreenShot.svg deleted file mode 100644 index b996589c94..0000000000 --- a/kindred-icons/Std_ViewScreenShot.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/Std_ViewTop.svg b/kindred-icons/Std_ViewTop.svg deleted file mode 100644 index 8ab4091204..0000000000 --- a/kindred-icons/Std_ViewTop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - T - diff --git a/kindred-icons/Std_ViewTrimetric.svg b/kindred-icons/Std_ViewTrimetric.svg deleted file mode 100644 index e8ca361032..0000000000 --- a/kindred-icons/Std_ViewTrimetric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/Surface_BSplineSurface.svg b/kindred-icons/Surface_BSplineSurface.svg deleted file mode 100644 index 8208f0598b..0000000000 --- a/kindred-icons/Surface_BSplineSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BSS - diff --git a/kindred-icons/Surface_BezierSurface.svg b/kindred-icons/Surface_BezierSurface.svg deleted file mode 100644 index 73c599afcf..0000000000 --- a/kindred-icons/Surface_BezierSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BS - diff --git a/kindred-icons/Surface_BlendCurve.svg b/kindred-icons/Surface_BlendCurve.svg deleted file mode 100644 index 4cc776e02c..0000000000 --- a/kindred-icons/Surface_BlendCurve.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BC - diff --git a/kindred-icons/Surface_CurveOnMesh.svg b/kindred-icons/Surface_CurveOnMesh.svg deleted file mode 100644 index 177e8bc8aa..0000000000 --- a/kindred-icons/Surface_CurveOnMesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - COM - diff --git a/kindred-icons/Surface_Cut.svg b/kindred-icons/Surface_Cut.svg deleted file mode 100644 index 420c2ddd26..0000000000 --- a/kindred-icons/Surface_Cut.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Cut - diff --git a/kindred-icons/Surface_ExtendFace.svg b/kindred-icons/Surface_ExtendFace.svg deleted file mode 100644 index a25af6599c..0000000000 --- a/kindred-icons/Surface_ExtendFace.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EF - diff --git a/kindred-icons/Surface_Filling.svg b/kindred-icons/Surface_Filling.svg deleted file mode 100644 index 7c2d58d9a7..0000000000 --- a/kindred-icons/Surface_Filling.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Fill - diff --git a/kindred-icons/Surface_GeomFillSurface.svg b/kindred-icons/Surface_GeomFillSurface.svg deleted file mode 100644 index 91a4d7ade6..0000000000 --- a/kindred-icons/Surface_GeomFillSurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GFS - diff --git a/kindred-icons/Surface_Sections.svg b/kindred-icons/Surface_Sections.svg deleted file mode 100644 index a92c4cc28a..0000000000 --- a/kindred-icons/Surface_Sections.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sect - diff --git a/kindred-icons/Surface_Sewing.svg b/kindred-icons/Surface_Sewing.svg deleted file mode 100644 index da205f2807..0000000000 --- a/kindred-icons/Surface_Sewing.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Sewi - diff --git a/kindred-icons/Surface_Surface.svg b/kindred-icons/Surface_Surface.svg deleted file mode 100644 index b57136e3a3..0000000000 --- a/kindred-icons/Surface_Surface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Surf - diff --git a/kindred-icons/Surface_Workbench.svg b/kindred-icons/Surface_Workbench.svg deleted file mode 100644 index 5f519491d2..0000000000 --- a/kindred-icons/Surface_Workbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Work - diff --git a/kindred-icons/TechDrawWorkbench.svg b/kindred-icons/TechDrawWorkbench.svg deleted file mode 100644 index c4937a47b7..0000000000 --- a/kindred-icons/TechDrawWorkbench.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/kindred-icons/TechDraw_2LineCenterline.svg b/kindred-icons/TechDraw_2LineCenterline.svg deleted file mode 100644 index 2d983e5a06..0000000000 --- a/kindred-icons/TechDraw_2LineCenterline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 2LC - diff --git a/kindred-icons/TechDraw_2PointCenterline.svg b/kindred-icons/TechDraw_2PointCenterline.svg deleted file mode 100644 index 2521c386f6..0000000000 --- a/kindred-icons/TechDraw_2PointCenterline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 2PC - diff --git a/kindred-icons/TechDraw_3PtAngleDimension.svg b/kindred-icons/TechDraw_3PtAngleDimension.svg deleted file mode 100644 index 0c97d01b60..0000000000 --- a/kindred-icons/TechDraw_3PtAngleDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - 3PAD - diff --git a/kindred-icons/TechDraw_ActiveView.svg b/kindred-icons/TechDraw_ActiveView.svg deleted file mode 100644 index 1e91ad8519..0000000000 --- a/kindred-icons/TechDraw_ActiveView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AV - diff --git a/kindred-icons/TechDraw_AddOffsetVertex.svg b/kindred-icons/TechDraw_AddOffsetVertex.svg deleted file mode 100644 index 57ab221f92..0000000000 --- a/kindred-icons/TechDraw_AddOffsetVertex.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AOV - diff --git a/kindred-icons/TechDraw_AngleDimension.svg b/kindred-icons/TechDraw_AngleDimension.svg deleted file mode 100644 index 1b2c79195c..0000000000 --- a/kindred-icons/TechDraw_AngleDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AD - diff --git a/kindred-icons/TechDraw_Annotation.svg b/kindred-icons/TechDraw_Annotation.svg deleted file mode 100644 index fdc68fb839..0000000000 --- a/kindred-icons/TechDraw_Annotation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Anno - diff --git a/kindred-icons/TechDraw_ArchView.svg b/kindred-icons/TechDraw_ArchView.svg deleted file mode 100644 index 1e91ad8519..0000000000 --- a/kindred-icons/TechDraw_ArchView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AV - diff --git a/kindred-icons/TechDraw_AreaDimension.svg b/kindred-icons/TechDraw_AreaDimension.svg deleted file mode 100644 index 1b2c79195c..0000000000 --- a/kindred-icons/TechDraw_AreaDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AD - diff --git a/kindred-icons/TechDraw_AxoLengthDimension.svg b/kindred-icons/TechDraw_AxoLengthDimension.svg deleted file mode 100644 index 78ff76f0ab..0000000000 --- a/kindred-icons/TechDraw_AxoLengthDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ALD - diff --git a/kindred-icons/TechDraw_Balloon.svg b/kindred-icons/TechDraw_Balloon.svg deleted file mode 100644 index 5c0fce53e4..0000000000 --- a/kindred-icons/TechDraw_Balloon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Ball - diff --git a/kindred-icons/TechDraw_BrokenView.svg b/kindred-icons/TechDraw_BrokenView.svg deleted file mode 100644 index f1ba417331..0000000000 --- a/kindred-icons/TechDraw_BrokenView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BV - diff --git a/kindred-icons/TechDraw_CameraOrientation.svg b/kindred-icons/TechDraw_CameraOrientation.svg deleted file mode 100644 index 619f56646a..0000000000 --- a/kindred-icons/TechDraw_CameraOrientation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CO - diff --git a/kindred-icons/TechDraw_ClipGroup.svg b/kindred-icons/TechDraw_ClipGroup.svg deleted file mode 100644 index a74124e53b..0000000000 --- a/kindred-icons/TechDraw_ClipGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CG - diff --git a/kindred-icons/TechDraw_ClipGroupAdd.svg b/kindred-icons/TechDraw_ClipGroupAdd.svg deleted file mode 100644 index b43548e2b7..0000000000 --- a/kindred-icons/TechDraw_ClipGroupAdd.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CGA - diff --git a/kindred-icons/TechDraw_ClipGroupRemove.svg b/kindred-icons/TechDraw_ClipGroupRemove.svg deleted file mode 100644 index ecf2d5b5b3..0000000000 --- a/kindred-icons/TechDraw_ClipGroupRemove.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CGR - diff --git a/kindred-icons/TechDraw_ComplexSection.svg b/kindred-icons/TechDraw_ComplexSection.svg deleted file mode 100644 index 2aeb591522..0000000000 --- a/kindred-icons/TechDraw_ComplexSection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CS - diff --git a/kindred-icons/TechDraw_CosmeticCircle.svg b/kindred-icons/TechDraw_CosmeticCircle.svg deleted file mode 100644 index 525c7985b4..0000000000 --- a/kindred-icons/TechDraw_CosmeticCircle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CC - diff --git a/kindred-icons/TechDraw_CosmeticEraser.svg b/kindred-icons/TechDraw_CosmeticEraser.svg deleted file mode 100644 index f0f129c1ba..0000000000 --- a/kindred-icons/TechDraw_CosmeticEraser.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CE - diff --git a/kindred-icons/TechDraw_CosmeticVertex.svg b/kindred-icons/TechDraw_CosmeticVertex.svg deleted file mode 100644 index a990e05a50..0000000000 --- a/kindred-icons/TechDraw_CosmeticVertex.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CV - diff --git a/kindred-icons/TechDraw_DecorateLine.svg b/kindred-icons/TechDraw_DecorateLine.svg deleted file mode 100644 index dc563f68da..0000000000 --- a/kindred-icons/TechDraw_DecorateLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DL - diff --git a/kindred-icons/TechDraw_DetailView.svg b/kindred-icons/TechDraw_DetailView.svg deleted file mode 100644 index 20f6c47943..0000000000 --- a/kindred-icons/TechDraw_DetailView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DV - diff --git a/kindred-icons/TechDraw_DiameterDimension.svg b/kindred-icons/TechDraw_DiameterDimension.svg deleted file mode 100644 index 2b1a1f81d1..0000000000 --- a/kindred-icons/TechDraw_DiameterDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DD - diff --git a/kindred-icons/TechDraw_Dimension.svg b/kindred-icons/TechDraw_Dimension.svg deleted file mode 100644 index a83e3495d8..0000000000 --- a/kindred-icons/TechDraw_Dimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Dime - diff --git a/kindred-icons/TechDraw_DimensionRepair.svg b/kindred-icons/TechDraw_DimensionRepair.svg deleted file mode 100644 index ade8c319d0..0000000000 --- a/kindred-icons/TechDraw_DimensionRepair.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DR - diff --git a/kindred-icons/TechDraw_Dimension_Pointer.svg b/kindred-icons/TechDraw_Dimension_Pointer.svg deleted file mode 100644 index 3dfa21f39e..0000000000 --- a/kindred-icons/TechDraw_Dimension_Pointer.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DP - diff --git a/kindred-icons/TechDraw_DraftView.svg b/kindred-icons/TechDraw_DraftView.svg deleted file mode 100644 index 20f6c47943..0000000000 --- a/kindred-icons/TechDraw_DraftView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DV - diff --git a/kindred-icons/TechDraw_ExportPageDXF.svg b/kindred-icons/TechDraw_ExportPageDXF.svg deleted file mode 100644 index 94f7df03b8..0000000000 --- a/kindred-icons/TechDraw_ExportPageDXF.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPDX - diff --git a/kindred-icons/TechDraw_ExportPageSVG.svg b/kindred-icons/TechDraw_ExportPageSVG.svg deleted file mode 100644 index 80f492e2b2..0000000000 --- a/kindred-icons/TechDraw_ExportPageSVG.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPSV - diff --git a/kindred-icons/TechDraw_ExtensionArcLengthAnnotation.svg b/kindred-icons/TechDraw_ExtensionArcLengthAnnotation.svg deleted file mode 100644 index cb06fbf650..0000000000 --- a/kindred-icons/TechDraw_ExtensionArcLengthAnnotation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EALA - diff --git a/kindred-icons/TechDraw_ExtensionAreaAnnotation.svg b/kindred-icons/TechDraw_ExtensionAreaAnnotation.svg deleted file mode 100644 index 790c20ab27..0000000000 --- a/kindred-icons/TechDraw_ExtensionAreaAnnotation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EAA - diff --git a/kindred-icons/TechDraw_ExtensionCascadeHorizDimension.svg b/kindred-icons/TechDraw_ExtensionCascadeHorizDimension.svg deleted file mode 100644 index a018c0d319..0000000000 --- a/kindred-icons/TechDraw_ExtensionCascadeHorizDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECHD - diff --git a/kindred-icons/TechDraw_ExtensionCascadeObliqueDimension.svg b/kindred-icons/TechDraw_ExtensionCascadeObliqueDimension.svg deleted file mode 100644 index c674264d97..0000000000 --- a/kindred-icons/TechDraw_ExtensionCascadeObliqueDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECOD - diff --git a/kindred-icons/TechDraw_ExtensionCascadeVertDimension.svg b/kindred-icons/TechDraw_ExtensionCascadeVertDimension.svg deleted file mode 100644 index a4338c4f9f..0000000000 --- a/kindred-icons/TechDraw_ExtensionCascadeVertDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECVD - diff --git a/kindred-icons/TechDraw_ExtensionChangeLineAttributes.svg b/kindred-icons/TechDraw_ExtensionChangeLineAttributes.svg deleted file mode 100644 index 6dc8207212..0000000000 --- a/kindred-icons/TechDraw_ExtensionChangeLineAttributes.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECLA - diff --git a/kindred-icons/TechDraw_ExtensionCircleCenterLines.svg b/kindred-icons/TechDraw_ExtensionCircleCenterLines.svg deleted file mode 100644 index c4a9ea781b..0000000000 --- a/kindred-icons/TechDraw_ExtensionCircleCenterLines.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECCL - diff --git a/kindred-icons/TechDraw_ExtensionCreateHorizChainDimension.svg b/kindred-icons/TechDraw_ExtensionCreateHorizChainDimension.svg deleted file mode 100644 index 7406822c3b..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateHorizChainDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECHC - diff --git a/kindred-icons/TechDraw_ExtensionCreateHorizChamferDimension.svg b/kindred-icons/TechDraw_ExtensionCreateHorizChamferDimension.svg deleted file mode 100644 index 7406822c3b..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateHorizChamferDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECHC - diff --git a/kindred-icons/TechDraw_ExtensionCreateHorizCoordDimension.svg b/kindred-icons/TechDraw_ExtensionCreateHorizCoordDimension.svg deleted file mode 100644 index 7406822c3b..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateHorizCoordDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECHC - diff --git a/kindred-icons/TechDraw_ExtensionCreateLengthArc.svg b/kindred-icons/TechDraw_ExtensionCreateLengthArc.svg deleted file mode 100644 index 6dc8207212..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateLengthArc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECLA - diff --git a/kindred-icons/TechDraw_ExtensionCreateObliqueChainDimension.svg b/kindred-icons/TechDraw_ExtensionCreateObliqueChainDimension.svg deleted file mode 100644 index 91e9b9244b..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateObliqueChainDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECOC - diff --git a/kindred-icons/TechDraw_ExtensionCreateObliqueCoordDimension.svg b/kindred-icons/TechDraw_ExtensionCreateObliqueCoordDimension.svg deleted file mode 100644 index 91e9b9244b..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateObliqueCoordDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECOC - diff --git a/kindred-icons/TechDraw_ExtensionCreateVertChainDimension.svg b/kindred-icons/TechDraw_ExtensionCreateVertChainDimension.svg deleted file mode 100644 index 15ac6f9c01..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateVertChainDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECVC - diff --git a/kindred-icons/TechDraw_ExtensionCreateVertChamferDimension.svg b/kindred-icons/TechDraw_ExtensionCreateVertChamferDimension.svg deleted file mode 100644 index 15ac6f9c01..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateVertChamferDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECVC - diff --git a/kindred-icons/TechDraw_ExtensionCreateVertCoordDimension.svg b/kindred-icons/TechDraw_ExtensionCreateVertCoordDimension.svg deleted file mode 100644 index 15ac6f9c01..0000000000 --- a/kindred-icons/TechDraw_ExtensionCreateVertCoordDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECVC - diff --git a/kindred-icons/TechDraw_ExtensionCustomizeFormat.svg b/kindred-icons/TechDraw_ExtensionCustomizeFormat.svg deleted file mode 100644 index 1a140fdbea..0000000000 --- a/kindred-icons/TechDraw_ExtensionCustomizeFormat.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ECF - diff --git a/kindred-icons/TechDraw_ExtensionDecreaseDecimal.svg b/kindred-icons/TechDraw_ExtensionDecreaseDecimal.svg deleted file mode 100644 index 76718c232a..0000000000 --- a/kindred-icons/TechDraw_ExtensionDecreaseDecimal.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EDD - diff --git a/kindred-icons/TechDraw_ExtensionDrawCosmArc.svg b/kindred-icons/TechDraw_ExtensionDrawCosmArc.svg deleted file mode 100644 index 706a493d81..0000000000 --- a/kindred-icons/TechDraw_ExtensionDrawCosmArc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EDCA - diff --git a/kindred-icons/TechDraw_ExtensionDrawCosmCircle.svg b/kindred-icons/TechDraw_ExtensionDrawCosmCircle.svg deleted file mode 100644 index 897f8b29d9..0000000000 --- a/kindred-icons/TechDraw_ExtensionDrawCosmCircle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EDCC - diff --git a/kindred-icons/TechDraw_ExtensionDrawCosmCircle3Points.svg b/kindred-icons/TechDraw_ExtensionDrawCosmCircle3Points.svg deleted file mode 100644 index 897f8b29d9..0000000000 --- a/kindred-icons/TechDraw_ExtensionDrawCosmCircle3Points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EDCC - diff --git a/kindred-icons/TechDraw_ExtensionExtendLine.svg b/kindred-icons/TechDraw_ExtensionExtendLine.svg deleted file mode 100644 index 19437cc91e..0000000000 --- a/kindred-icons/TechDraw_ExtensionExtendLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EEL - diff --git a/kindred-icons/TechDraw_ExtensionHoleCircle.svg b/kindred-icons/TechDraw_ExtensionHoleCircle.svg deleted file mode 100644 index 4093adaa0b..0000000000 --- a/kindred-icons/TechDraw_ExtensionHoleCircle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EHC - diff --git a/kindred-icons/TechDraw_ExtensionIncreaseDecimal.svg b/kindred-icons/TechDraw_ExtensionIncreaseDecimal.svg deleted file mode 100644 index 89020abaf1..0000000000 --- a/kindred-icons/TechDraw_ExtensionIncreaseDecimal.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EID - diff --git a/kindred-icons/TechDraw_ExtensionInsertDiameter.svg b/kindred-icons/TechDraw_ExtensionInsertDiameter.svg deleted file mode 100644 index 89020abaf1..0000000000 --- a/kindred-icons/TechDraw_ExtensionInsertDiameter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EID - diff --git a/kindred-icons/TechDraw_ExtensionInsertRepetition.svg b/kindred-icons/TechDraw_ExtensionInsertRepetition.svg deleted file mode 100644 index 9c7eeaa848..0000000000 --- a/kindred-icons/TechDraw_ExtensionInsertRepetition.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EIR - diff --git a/kindred-icons/TechDraw_ExtensionInsertSquare.svg b/kindred-icons/TechDraw_ExtensionInsertSquare.svg deleted file mode 100644 index 475d7854c4..0000000000 --- a/kindred-icons/TechDraw_ExtensionInsertSquare.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EIS - diff --git a/kindred-icons/TechDraw_ExtensionLineParallel.svg b/kindred-icons/TechDraw_ExtensionLineParallel.svg deleted file mode 100644 index e7e95d6efd..0000000000 --- a/kindred-icons/TechDraw_ExtensionLineParallel.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ELP - diff --git a/kindred-icons/TechDraw_ExtensionLinePerpendicular.svg b/kindred-icons/TechDraw_ExtensionLinePerpendicular.svg deleted file mode 100644 index e7e95d6efd..0000000000 --- a/kindred-icons/TechDraw_ExtensionLinePerpendicular.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ELP - diff --git a/kindred-icons/TechDraw_ExtensionLockUnlockView.svg b/kindred-icons/TechDraw_ExtensionLockUnlockView.svg deleted file mode 100644 index 81ad16757d..0000000000 --- a/kindred-icons/TechDraw_ExtensionLockUnlockView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ELUV - diff --git a/kindred-icons/TechDraw_ExtensionPosHorizChainDimension.svg b/kindred-icons/TechDraw_ExtensionPosHorizChainDimension.svg deleted file mode 100644 index ffa0100773..0000000000 --- a/kindred-icons/TechDraw_ExtensionPosHorizChainDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPHC - diff --git a/kindred-icons/TechDraw_ExtensionPosObliqueChainDimension.svg b/kindred-icons/TechDraw_ExtensionPosObliqueChainDimension.svg deleted file mode 100644 index 86f9b1def2..0000000000 --- a/kindred-icons/TechDraw_ExtensionPosObliqueChainDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPOC - diff --git a/kindred-icons/TechDraw_ExtensionPosVertChainDimension.svg b/kindred-icons/TechDraw_ExtensionPosVertChainDimension.svg deleted file mode 100644 index 2e4ec903b1..0000000000 --- a/kindred-icons/TechDraw_ExtensionPosVertChainDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPVC - diff --git a/kindred-icons/TechDraw_ExtensionPositionSectionView.svg b/kindred-icons/TechDraw_ExtensionPositionSectionView.svg deleted file mode 100644 index 80f492e2b2..0000000000 --- a/kindred-icons/TechDraw_ExtensionPositionSectionView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EPSV - diff --git a/kindred-icons/TechDraw_ExtensionRemovePrefixChar.svg b/kindred-icons/TechDraw_ExtensionRemovePrefixChar.svg deleted file mode 100644 index 330d1bca57..0000000000 --- a/kindred-icons/TechDraw_ExtensionRemovePrefixChar.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ERPC - diff --git a/kindred-icons/TechDraw_ExtensionSelectLineAttributes.svg b/kindred-icons/TechDraw_ExtensionSelectLineAttributes.svg deleted file mode 100644 index b794ad2fea..0000000000 --- a/kindred-icons/TechDraw_ExtensionSelectLineAttributes.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ESLA - diff --git a/kindred-icons/TechDraw_ExtensionShortenLine.svg b/kindred-icons/TechDraw_ExtensionShortenLine.svg deleted file mode 100644 index f01db14d22..0000000000 --- a/kindred-icons/TechDraw_ExtensionShortenLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ESL - diff --git a/kindred-icons/TechDraw_ExtensionThreadBoltBottom.svg b/kindred-icons/TechDraw_ExtensionThreadBoltBottom.svg deleted file mode 100644 index 41928ae7e2..0000000000 --- a/kindred-icons/TechDraw_ExtensionThreadBoltBottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ETBB - diff --git a/kindred-icons/TechDraw_ExtensionThreadBoltSide.svg b/kindred-icons/TechDraw_ExtensionThreadBoltSide.svg deleted file mode 100644 index bc9c9f5015..0000000000 --- a/kindred-icons/TechDraw_ExtensionThreadBoltSide.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ETBS - diff --git a/kindred-icons/TechDraw_ExtensionThreadHoleBottom.svg b/kindred-icons/TechDraw_ExtensionThreadHoleBottom.svg deleted file mode 100644 index de864a2f65..0000000000 --- a/kindred-icons/TechDraw_ExtensionThreadHoleBottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ETHB - diff --git a/kindred-icons/TechDraw_ExtensionThreadHoleSide.svg b/kindred-icons/TechDraw_ExtensionThreadHoleSide.svg deleted file mode 100644 index 95b0a61d9d..0000000000 --- a/kindred-icons/TechDraw_ExtensionThreadHoleSide.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ETHS - diff --git a/kindred-icons/TechDraw_ExtensionVertexAtIntersection.svg b/kindred-icons/TechDraw_ExtensionVertexAtIntersection.svg deleted file mode 100644 index d13210c2e7..0000000000 --- a/kindred-icons/TechDraw_ExtensionVertexAtIntersection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EVAI - diff --git a/kindred-icons/TechDraw_FaceCenterLine.svg b/kindred-icons/TechDraw_FaceCenterLine.svg deleted file mode 100644 index 75bbd9fb1e..0000000000 --- a/kindred-icons/TechDraw_FaceCenterLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FCL - diff --git a/kindred-icons/TechDraw_FaceDecor.svg b/kindred-icons/TechDraw_FaceDecor.svg deleted file mode 100644 index f0762c07af..0000000000 --- a/kindred-icons/TechDraw_FaceDecor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FD - diff --git a/kindred-icons/TechDraw_FillTemplateFields.svg b/kindred-icons/TechDraw_FillTemplateFields.svg deleted file mode 100644 index 128f021669..0000000000 --- a/kindred-icons/TechDraw_FillTemplateFields.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FTF - diff --git a/kindred-icons/TechDraw_GeometricHatch.svg b/kindred-icons/TechDraw_GeometricHatch.svg deleted file mode 100644 index 75fd76967d..0000000000 --- a/kindred-icons/TechDraw_GeometricHatch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - GH - diff --git a/kindred-icons/TechDraw_Hatch.svg b/kindred-icons/TechDraw_Hatch.svg deleted file mode 100644 index 6cf423d43d..0000000000 --- a/kindred-icons/TechDraw_Hatch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Hatc - diff --git a/kindred-icons/TechDraw_HoleShaftFit.svg b/kindred-icons/TechDraw_HoleShaftFit.svg deleted file mode 100644 index 66f415d881..0000000000 --- a/kindred-icons/TechDraw_HoleShaftFit.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HSF - diff --git a/kindred-icons/TechDraw_HorizontalDimension.svg b/kindred-icons/TechDraw_HorizontalDimension.svg deleted file mode 100644 index 6116f7a06e..0000000000 --- a/kindred-icons/TechDraw_HorizontalDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HD - diff --git a/kindred-icons/TechDraw_HorizontalExtentDimension.svg b/kindred-icons/TechDraw_HorizontalExtentDimension.svg deleted file mode 100644 index 33346e7469..0000000000 --- a/kindred-icons/TechDraw_HorizontalExtentDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - HED - diff --git a/kindred-icons/TechDraw_Image.svg b/kindred-icons/TechDraw_Image.svg deleted file mode 100644 index d6107ab93e..0000000000 --- a/kindred-icons/TechDraw_Image.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Imag - diff --git a/kindred-icons/TechDraw_LandmarkDimension.svg b/kindred-icons/TechDraw_LandmarkDimension.svg deleted file mode 100644 index 774e5b4ea0..0000000000 --- a/kindred-icons/TechDraw_LandmarkDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LD - diff --git a/kindred-icons/TechDraw_LeaderLine.svg b/kindred-icons/TechDraw_LeaderLine.svg deleted file mode 100644 index e830d54772..0000000000 --- a/kindred-icons/TechDraw_LeaderLine.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LL - diff --git a/kindred-icons/TechDraw_LengthDimension.svg b/kindred-icons/TechDraw_LengthDimension.svg deleted file mode 100644 index 774e5b4ea0..0000000000 --- a/kindred-icons/TechDraw_LengthDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LD - diff --git a/kindred-icons/TechDraw_Line2Points.svg b/kindred-icons/TechDraw_Line2Points.svg deleted file mode 100644 index 1ea30ee940..0000000000 --- a/kindred-icons/TechDraw_Line2Points.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - L2P - diff --git a/kindred-icons/TechDraw_LinkDimension.svg b/kindred-icons/TechDraw_LinkDimension.svg deleted file mode 100644 index 774e5b4ea0..0000000000 --- a/kindred-icons/TechDraw_LinkDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LD - diff --git a/kindred-icons/TechDraw_Lock.svg b/kindred-icons/TechDraw_Lock.svg deleted file mode 100644 index 99db7f6b13..0000000000 --- a/kindred-icons/TechDraw_Lock.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Lock - diff --git a/kindred-icons/TechDraw_Midpoints.svg b/kindred-icons/TechDraw_Midpoints.svg deleted file mode 100644 index 70ed6d4c84..0000000000 --- a/kindred-icons/TechDraw_Midpoints.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Midp - diff --git a/kindred-icons/TechDraw_MoveView.svg b/kindred-icons/TechDraw_MoveView.svg deleted file mode 100644 index 8a756bc0b3..0000000000 --- a/kindred-icons/TechDraw_MoveView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - MV - diff --git a/kindred-icons/TechDraw_Multiview.svg b/kindred-icons/TechDraw_Multiview.svg deleted file mode 100644 index 25e3caf2fc..0000000000 --- a/kindred-icons/TechDraw_Multiview.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Mult - diff --git a/kindred-icons/TechDraw_PageDefault.svg b/kindred-icons/TechDraw_PageDefault.svg deleted file mode 100644 index d73998f924..0000000000 --- a/kindred-icons/TechDraw_PageDefault.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PD - diff --git a/kindred-icons/TechDraw_PageTemplate.svg b/kindred-icons/TechDraw_PageTemplate.svg deleted file mode 100644 index b7772d448b..0000000000 --- a/kindred-icons/TechDraw_PageTemplate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/TechDraw_Pages.svg b/kindred-icons/TechDraw_Pages.svg deleted file mode 100644 index caf02d7d0c..0000000000 --- a/kindred-icons/TechDraw_Pages.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Page - diff --git a/kindred-icons/TechDraw_PrintAll.svg b/kindred-icons/TechDraw_PrintAll.svg deleted file mode 100644 index 999326f9a7..0000000000 --- a/kindred-icons/TechDraw_PrintAll.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PA - diff --git a/kindred-icons/TechDraw_ProjBottom.svg b/kindred-icons/TechDraw_ProjBottom.svg deleted file mode 100644 index ee3c96a724..0000000000 --- a/kindred-icons/TechDraw_ProjBottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PB - diff --git a/kindred-icons/TechDraw_ProjFront.svg b/kindred-icons/TechDraw_ProjFront.svg deleted file mode 100644 index 75785f37f8..0000000000 --- a/kindred-icons/TechDraw_ProjFront.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PF - diff --git a/kindred-icons/TechDraw_ProjFrontBottomLeft.svg b/kindred-icons/TechDraw_ProjFrontBottomLeft.svg deleted file mode 100644 index 7cc14c26b3..0000000000 --- a/kindred-icons/TechDraw_ProjFrontBottomLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFBL - diff --git a/kindred-icons/TechDraw_ProjFrontBottomRight.svg b/kindred-icons/TechDraw_ProjFrontBottomRight.svg deleted file mode 100644 index 4b9d94e6d0..0000000000 --- a/kindred-icons/TechDraw_ProjFrontBottomRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFBR - diff --git a/kindred-icons/TechDraw_ProjFrontTopLeft.svg b/kindred-icons/TechDraw_ProjFrontTopLeft.svg deleted file mode 100644 index 78c06fbee7..0000000000 --- a/kindred-icons/TechDraw_ProjFrontTopLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFTL - diff --git a/kindred-icons/TechDraw_ProjFrontTopRight.svg b/kindred-icons/TechDraw_ProjFrontTopRight.svg deleted file mode 100644 index 8028db55af..0000000000 --- a/kindred-icons/TechDraw_ProjFrontTopRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PFTR - diff --git a/kindred-icons/TechDraw_ProjLeft.svg b/kindred-icons/TechDraw_ProjLeft.svg deleted file mode 100644 index 04ad7fadb8..0000000000 --- a/kindred-icons/TechDraw_ProjLeft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PL - diff --git a/kindred-icons/TechDraw_ProjRear.svg b/kindred-icons/TechDraw_ProjRear.svg deleted file mode 100644 index f1d2a4b26d..0000000000 --- a/kindred-icons/TechDraw_ProjRear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PR - diff --git a/kindred-icons/TechDraw_ProjRight.svg b/kindred-icons/TechDraw_ProjRight.svg deleted file mode 100644 index f1d2a4b26d..0000000000 --- a/kindred-icons/TechDraw_ProjRight.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PR - diff --git a/kindred-icons/TechDraw_ProjTop.svg b/kindred-icons/TechDraw_ProjTop.svg deleted file mode 100644 index b7772d448b..0000000000 --- a/kindred-icons/TechDraw_ProjTop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PT - diff --git a/kindred-icons/TechDraw_ProjectShape.svg b/kindred-icons/TechDraw_ProjectShape.svg deleted file mode 100644 index 012459b42f..0000000000 --- a/kindred-icons/TechDraw_ProjectShape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PS - diff --git a/kindred-icons/TechDraw_ProjectionGroup.svg b/kindred-icons/TechDraw_ProjectionGroup.svg deleted file mode 100644 index 83027dc64a..0000000000 --- a/kindred-icons/TechDraw_ProjectionGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PG - diff --git a/kindred-icons/TechDraw_Quadrants.svg b/kindred-icons/TechDraw_Quadrants.svg deleted file mode 100644 index cc66cc82e3..0000000000 --- a/kindred-icons/TechDraw_Quadrants.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Quad - diff --git a/kindred-icons/TechDraw_RadiusDimension.svg b/kindred-icons/TechDraw_RadiusDimension.svg deleted file mode 100644 index 37f2574ff6..0000000000 --- a/kindred-icons/TechDraw_RadiusDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RD - diff --git a/kindred-icons/TechDraw_RedrawPage.svg b/kindred-icons/TechDraw_RedrawPage.svg deleted file mode 100644 index 9005ab210d..0000000000 --- a/kindred-icons/TechDraw_RedrawPage.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RP - diff --git a/kindred-icons/TechDraw_RefError.svg b/kindred-icons/TechDraw_RefError.svg deleted file mode 100644 index 431e8d2f65..0000000000 --- a/kindred-icons/TechDraw_RefError.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RE - diff --git a/kindred-icons/TechDraw_RichTextAnnotation.svg b/kindred-icons/TechDraw_RichTextAnnotation.svg deleted file mode 100644 index 5acfb929d8..0000000000 --- a/kindred-icons/TechDraw_RichTextAnnotation.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - RTA - diff --git a/kindred-icons/TechDraw_SectionView.svg b/kindred-icons/TechDraw_SectionView.svg deleted file mode 100644 index 8b76bbf6ca..0000000000 --- a/kindred-icons/TechDraw_SectionView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SV - diff --git a/kindred-icons/TechDraw_ShareView.svg b/kindred-icons/TechDraw_ShareView.svg deleted file mode 100644 index 8b76bbf6ca..0000000000 --- a/kindred-icons/TechDraw_ShareView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SV - diff --git a/kindred-icons/TechDraw_ShowAll.svg b/kindred-icons/TechDraw_ShowAll.svg deleted file mode 100644 index 74763cbbb8..0000000000 --- a/kindred-icons/TechDraw_ShowAll.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SA - diff --git a/kindred-icons/TechDraw_SpreadsheetView.svg b/kindred-icons/TechDraw_SpreadsheetView.svg deleted file mode 100644 index 8b76bbf6ca..0000000000 --- a/kindred-icons/TechDraw_SpreadsheetView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SV - diff --git a/kindred-icons/TechDraw_StackBottom.svg b/kindred-icons/TechDraw_StackBottom.svg deleted file mode 100644 index 8e3b74c4fa..0000000000 --- a/kindred-icons/TechDraw_StackBottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SB - diff --git a/kindred-icons/TechDraw_StackDown.svg b/kindred-icons/TechDraw_StackDown.svg deleted file mode 100644 index 5576b8dc87..0000000000 --- a/kindred-icons/TechDraw_StackDown.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SD - diff --git a/kindred-icons/TechDraw_StackTop.svg b/kindred-icons/TechDraw_StackTop.svg deleted file mode 100644 index 7cbdfa3670..0000000000 --- a/kindred-icons/TechDraw_StackTop.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ST - diff --git a/kindred-icons/TechDraw_StackUp.svg b/kindred-icons/TechDraw_StackUp.svg deleted file mode 100644 index d363113d8f..0000000000 --- a/kindred-icons/TechDraw_StackUp.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SU - diff --git a/kindred-icons/TechDraw_SurfaceFinishSymbols.svg b/kindred-icons/TechDraw_SurfaceFinishSymbols.svg deleted file mode 100644 index 22f6642d40..0000000000 --- a/kindred-icons/TechDraw_SurfaceFinishSymbols.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SFS - diff --git a/kindred-icons/TechDraw_Symbol.svg b/kindred-icons/TechDraw_Symbol.svg deleted file mode 100644 index 4807fd50e4..0000000000 --- a/kindred-icons/TechDraw_Symbol.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Symb - diff --git a/kindred-icons/TechDraw_Tile.svg b/kindred-icons/TechDraw_Tile.svg deleted file mode 100644 index b6b7e2894a..0000000000 --- a/kindred-icons/TechDraw_Tile.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - Tile - diff --git a/kindred-icons/TechDraw_ToggleFrame.svg b/kindred-icons/TechDraw_ToggleFrame.svg deleted file mode 100644 index 7fb0891c3a..0000000000 --- a/kindred-icons/TechDraw_ToggleFrame.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TF - diff --git a/kindred-icons/TechDraw_TreeHatch.svg b/kindred-icons/TechDraw_TreeHatch.svg deleted file mode 100644 index e23ad9a950..0000000000 --- a/kindred-icons/TechDraw_TreeHatch.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TH - diff --git a/kindred-icons/TechDraw_TreeMulti.svg b/kindred-icons/TechDraw_TreeMulti.svg deleted file mode 100644 index f8a078e97f..0000000000 --- a/kindred-icons/TechDraw_TreeMulti.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TM - diff --git a/kindred-icons/TechDraw_TreePage.svg b/kindred-icons/TechDraw_TreePage.svg deleted file mode 100644 index a26b5adb37..0000000000 --- a/kindred-icons/TechDraw_TreePage.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TP - diff --git a/kindred-icons/TechDraw_TreePageSync.svg b/kindred-icons/TechDraw_TreePageSync.svg deleted file mode 100644 index 248b290465..0000000000 --- a/kindred-icons/TechDraw_TreePageSync.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TPS - diff --git a/kindred-icons/TechDraw_TreePageTemplate.svg b/kindred-icons/TechDraw_TreePageTemplate.svg deleted file mode 100644 index 8bc9868193..0000000000 --- a/kindred-icons/TechDraw_TreePageTemplate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TPT - diff --git a/kindred-icons/TechDraw_TreePageUnsync.svg b/kindred-icons/TechDraw_TreePageUnsync.svg deleted file mode 100644 index 9eba1f30b9..0000000000 --- a/kindred-icons/TechDraw_TreePageUnsync.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TPU - diff --git a/kindred-icons/TechDraw_TreeProjGroup.svg b/kindred-icons/TechDraw_TreeProjGroup.svg deleted file mode 100644 index 5491dcc045..0000000000 --- a/kindred-icons/TechDraw_TreeProjGroup.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TPG - diff --git a/kindred-icons/TechDraw_TreeSection.svg b/kindred-icons/TechDraw_TreeSection.svg deleted file mode 100644 index 20e20fcbd6..0000000000 --- a/kindred-icons/TechDraw_TreeSection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TS - diff --git a/kindred-icons/TechDraw_TreeSpreadsheet.svg b/kindred-icons/TechDraw_TreeSpreadsheet.svg deleted file mode 100644 index 20e20fcbd6..0000000000 --- a/kindred-icons/TechDraw_TreeSpreadsheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TS - diff --git a/kindred-icons/TechDraw_TreeSymbol.svg b/kindred-icons/TechDraw_TreeSymbol.svg deleted file mode 100644 index 20e20fcbd6..0000000000 --- a/kindred-icons/TechDraw_TreeSymbol.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TS - diff --git a/kindred-icons/TechDraw_TreeView.svg b/kindred-icons/TechDraw_TreeView.svg deleted file mode 100644 index 01fc842ef6..0000000000 --- a/kindred-icons/TechDraw_TreeView.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TV - diff --git a/kindred-icons/TechDraw_VerticalDimension.svg b/kindred-icons/TechDraw_VerticalDimension.svg deleted file mode 100644 index 926d5b21e0..0000000000 --- a/kindred-icons/TechDraw_VerticalDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VD - diff --git a/kindred-icons/TechDraw_VerticalExtentDimension.svg b/kindred-icons/TechDraw_VerticalExtentDimension.svg deleted file mode 100644 index fe11c3746a..0000000000 --- a/kindred-icons/TechDraw_VerticalExtentDimension.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - VED - diff --git a/kindred-icons/TechDraw_View.svg b/kindred-icons/TechDraw_View.svg deleted file mode 100644 index 7778de1826..0000000000 --- a/kindred-icons/TechDraw_View.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - View - diff --git a/kindred-icons/TechDraw_WeldSymbol.svg b/kindred-icons/TechDraw_WeldSymbol.svg deleted file mode 100644 index 5cd076b31e..0000000000 --- a/kindred-icons/TechDraw_WeldSymbol.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - WS - diff --git a/kindred-icons/TestWorkbench.svg b/kindred-icons/TestWorkbench.svg deleted file mode 100644 index f792638fed..0000000000 --- a/kindred-icons/TestWorkbench.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TW - diff --git a/kindred-icons/TextDocument.svg b/kindred-icons/TextDocument.svg deleted file mode 100644 index b0119dafc3..0000000000 --- a/kindred-icons/TextDocument.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/TreeItemInvisible.svg b/kindred-icons/TreeItemInvisible.svg deleted file mode 100644 index 5fad77ac26..0000000000 --- a/kindred-icons/TreeItemInvisible.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/TreeItemVisible.svg b/kindred-icons/TreeItemVisible.svg deleted file mode 100644 index 55756f8206..0000000000 --- a/kindred-icons/TreeItemVisible.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/Tree_Annotation.svg b/kindred-icons/Tree_Annotation.svg deleted file mode 100644 index 28c76ec8a7..0000000000 --- a/kindred-icons/Tree_Annotation.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/Tree_Dimension.svg b/kindred-icons/Tree_Dimension.svg deleted file mode 100644 index b8f824cad9..0000000000 --- a/kindred-icons/Tree_Dimension.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/Tree_Part.svg b/kindred-icons/Tree_Part.svg deleted file mode 100644 index 212466664d..0000000000 --- a/kindred-icons/Tree_Part.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TP - diff --git a/kindred-icons/Tree_Python.svg b/kindred-icons/Tree_Python.svg deleted file mode 100644 index dcda80528a..0000000000 --- a/kindred-icons/Tree_Python.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/Unlink.svg b/kindred-icons/Unlink.svg deleted file mode 100644 index 95b5c37585..0000000000 --- a/kindred-icons/Unlink.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - diff --git a/kindred-icons/VarSet.svg b/kindred-icons/VarSet.svg deleted file mode 100644 index 125e1f4642..0000000000 --- a/kindred-icons/VarSet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - x - = - diff --git a/kindred-icons/Warning.svg b/kindred-icons/Warning.svg deleted file mode 100644 index 5340d24f26..0000000000 --- a/kindred-icons/Warning.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/WhatsThis.svg b/kindred-icons/WhatsThis.svg deleted file mode 100644 index 4fa94c60bd..0000000000 --- a/kindred-icons/WhatsThis.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/accessories-calculator.svg b/kindred-icons/accessories-calculator.svg deleted file mode 100644 index 1ab3c1cc3d..0000000000 --- a/kindred-icons/accessories-calculator.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/accessories-text-editor.svg b/kindred-icons/accessories-text-editor.svg deleted file mode 100644 index 0336a29e84..0000000000 --- a/kindred-icons/accessories-text-editor.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/application-exit.svg b/kindred-icons/application-exit.svg deleted file mode 100644 index c31aaa4db5..0000000000 --- a/kindred-icons/application-exit.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/arrow-ccw.svg b/kindred-icons/arrow-ccw.svg deleted file mode 100644 index 0828fbc135..0000000000 --- a/kindred-icons/arrow-ccw.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AC - diff --git a/kindred-icons/arrow-cw.svg b/kindred-icons/arrow-cw.svg deleted file mode 100644 index 0828fbc135..0000000000 --- a/kindred-icons/arrow-cw.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AC - diff --git a/kindred-icons/arrow-down.svg b/kindred-icons/arrow-down.svg deleted file mode 100644 index 1cae97541f..0000000000 --- a/kindred-icons/arrow-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AD - diff --git a/kindred-icons/arrow-left-down.svg b/kindred-icons/arrow-left-down.svg deleted file mode 100644 index 9e6e19bc98..0000000000 --- a/kindred-icons/arrow-left-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ALD - diff --git a/kindred-icons/arrow-left-up.svg b/kindred-icons/arrow-left-up.svg deleted file mode 100644 index a8fe79c505..0000000000 --- a/kindred-icons/arrow-left-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ALU - diff --git a/kindred-icons/arrow-left.svg b/kindred-icons/arrow-left.svg deleted file mode 100644 index df1d3e6762..0000000000 --- a/kindred-icons/arrow-left.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AL - diff --git a/kindred-icons/arrow-right-down.svg b/kindred-icons/arrow-right-down.svg deleted file mode 100644 index c74f71405c..0000000000 --- a/kindred-icons/arrow-right-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ARD - diff --git a/kindred-icons/arrow-right-up.svg b/kindred-icons/arrow-right-up.svg deleted file mode 100644 index d2bbcbb399..0000000000 --- a/kindred-icons/arrow-right-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - ARU - diff --git a/kindred-icons/arrow-right.svg b/kindred-icons/arrow-right.svg deleted file mode 100644 index 14ab734d31..0000000000 --- a/kindred-icons/arrow-right.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AR - diff --git a/kindred-icons/arrow-up.svg b/kindred-icons/arrow-up.svg deleted file mode 100644 index 659595795d..0000000000 --- a/kindred-icons/arrow-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AU - diff --git a/kindred-icons/arrowdot.svg b/kindred-icons/arrowdot.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowdot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrowfilled.svg b/kindred-icons/arrowfilled.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowfilled.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrowfork.svg b/kindred-icons/arrowfork.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowfork.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrownone.svg b/kindred-icons/arrownone.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrownone.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrowopen.svg b/kindred-icons/arrowopen.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowopen.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrowopendot.svg b/kindred-icons/arrowopendot.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowopendot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrowpyramid.svg b/kindred-icons/arrowpyramid.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowpyramid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/arrowtick.svg b/kindred-icons/arrowtick.svg deleted file mode 100644 index 79de100c92..0000000000 --- a/kindred-icons/arrowtick.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - arro - diff --git a/kindred-icons/bgColor.svg b/kindred-icons/bgColor.svg deleted file mode 100644 index 13835b2c70..0000000000 --- a/kindred-icons/bgColor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - BC - diff --git a/kindred-icons/bottomline.svg b/kindred-icons/bottomline.svg deleted file mode 100644 index bb3d0a39f1..0000000000 --- a/kindred-icons/bottomline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - bott - diff --git a/kindred-icons/bulb.svg b/kindred-icons/bulb.svg deleted file mode 100644 index 0c67e2aa18..0000000000 --- a/kindred-icons/bulb.svg +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/button_add_all.svg b/kindred-icons/button_add_all.svg deleted file mode 100644 index a02e363677..0000000000 --- a/kindred-icons/button_add_all.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/button_down.svg b/kindred-icons/button_down.svg deleted file mode 100644 index 4acf227db2..0000000000 --- a/kindred-icons/button_down.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/button_invalid.svg b/kindred-icons/button_invalid.svg deleted file mode 100644 index f805bc4622..0000000000 --- a/kindred-icons/button_invalid.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/button_left.svg b/kindred-icons/button_left.svg deleted file mode 100644 index 1abbecf45c..0000000000 --- a/kindred-icons/button_left.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/button_right.svg b/kindred-icons/button_right.svg deleted file mode 100644 index 8fcdd3bd95..0000000000 --- a/kindred-icons/button_right.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/button_rotate.svg b/kindred-icons/button_rotate.svg deleted file mode 100644 index 603f72565f..0000000000 --- a/kindred-icons/button_rotate.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/button_sort.svg b/kindred-icons/button_sort.svg deleted file mode 100644 index 7491671c36..0000000000 --- a/kindred-icons/button_sort.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/button_up.svg b/kindred-icons/button_up.svg deleted file mode 100644 index 2082b2620a..0000000000 --- a/kindred-icons/button_up.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/button_valid.svg b/kindred-icons/button_valid.svg deleted file mode 100644 index 0773b11967..0000000000 --- a/kindred-icons/button_valid.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/circular.svg b/kindred-icons/circular.svg deleted file mode 100644 index 9f09ad693f..0000000000 --- a/kindred-icons/circular.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - circ - diff --git a/kindred-icons/clear-selection.svg b/kindred-icons/clear-selection.svg deleted file mode 100644 index 9709468d9b..0000000000 --- a/kindred-icons/clear-selection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/colors.svg b/kindred-icons/colors.svg deleted file mode 100644 index eaa09f4a2c..0000000000 --- a/kindred-icons/colors.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/continuous-line.svg b/kindred-icons/continuous-line.svg deleted file mode 100644 index 0febfc7fb5..0000000000 --- a/kindred-icons/continuous-line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - CL - diff --git a/kindred-icons/critical-info.svg b/kindred-icons/critical-info.svg deleted file mode 100644 index b431919411..0000000000 --- a/kindred-icons/critical-info.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/cursor-pan.svg b/kindred-icons/cursor-pan.svg deleted file mode 100644 index 794b13869b..0000000000 --- a/kindred-icons/cursor-pan.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/cursor-rotate.svg b/kindred-icons/cursor-rotate.svg deleted file mode 100644 index 2bb19f5f72..0000000000 --- a/kindred-icons/cursor-rotate.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/cursor-through.svg b/kindred-icons/cursor-through.svg deleted file mode 100644 index 04bba46841..0000000000 --- a/kindred-icons/cursor-through.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/cursor-zoom.svg b/kindred-icons/cursor-zoom.svg deleted file mode 100644 index abb7330eb0..0000000000 --- a/kindred-icons/cursor-zoom.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/dagViewFail.svg b/kindred-icons/dagViewFail.svg deleted file mode 100644 index 351d9eb509..0000000000 --- a/kindred-icons/dagViewFail.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/dagViewPass.svg b/kindred-icons/dagViewPass.svg deleted file mode 100644 index 0edc4585f2..0000000000 --- a/kindred-icons/dagViewPass.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/dagViewPending.svg b/kindred-icons/dagViewPending.svg deleted file mode 100644 index 34eda528ce..0000000000 --- a/kindred-icons/dagViewPending.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/dagViewVisible.svg b/kindred-icons/dagViewVisible.svg deleted file mode 100644 index 1b295e614f..0000000000 --- a/kindred-icons/dagViewVisible.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/dash-line.svg b/kindred-icons/dash-line.svg deleted file mode 100644 index 4800b6f566..0000000000 --- a/kindred-icons/dash-line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DL - diff --git a/kindred-icons/dashDot-line.svg b/kindred-icons/dashDot-line.svg deleted file mode 100644 index 11212b0d97..0000000000 --- a/kindred-icons/dashDot-line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DDL - diff --git a/kindred-icons/dashDotDot-line.svg b/kindred-icons/dashDotDot-line.svg deleted file mode 100644 index aef227d516..0000000000 --- a/kindred-icons/dashDotDot-line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DDDL - diff --git a/kindred-icons/delete.svg b/kindred-icons/delete.svg deleted file mode 100644 index 1c22cc81db..0000000000 --- a/kindred-icons/delete.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/kindred-icons/document-new.svg b/kindred-icons/document-new.svg deleted file mode 100644 index ea898b703f..0000000000 --- a/kindred-icons/document-new.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/document-open.svg b/kindred-icons/document-open.svg deleted file mode 100644 index 4856dc5fde..0000000000 --- a/kindred-icons/document-open.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/document-print.svg b/kindred-icons/document-print.svg deleted file mode 100644 index 577d38442d..0000000000 --- a/kindred-icons/document-print.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/kindred-icons/document-save-as.svg b/kindred-icons/document-save-as.svg deleted file mode 100644 index 3c752523e6..0000000000 --- a/kindred-icons/document-save-as.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/kindred-icons/document-save.svg b/kindred-icons/document-save.svg deleted file mode 100644 index 65033865d9..0000000000 --- a/kindred-icons/document-save.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/kindred-icons/dot-line.svg b/kindred-icons/dot-line.svg deleted file mode 100644 index 4800b6f566..0000000000 --- a/kindred-icons/dot-line.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - DL - diff --git a/kindred-icons/edge-join-miter-not.svg b/kindred-icons/edge-join-miter-not.svg deleted file mode 100644 index ebf3760778..0000000000 --- a/kindred-icons/edge-join-miter-not.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EJMN - diff --git a/kindred-icons/edge-join-miter.svg b/kindred-icons/edge-join-miter.svg deleted file mode 100644 index 8dbadab992..0000000000 --- a/kindred-icons/edge-join-miter.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EJM - diff --git a/kindred-icons/edge-join-round-not.svg b/kindred-icons/edge-join-round-not.svg deleted file mode 100644 index 125b2b4d3c..0000000000 --- a/kindred-icons/edge-join-round-not.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EJRN - diff --git a/kindred-icons/edge-join-round.svg b/kindred-icons/edge-join-round.svg deleted file mode 100644 index e0b99e3912..0000000000 --- a/kindred-icons/edge-join-round.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - EJR - diff --git a/kindred-icons/edge-selection.svg b/kindred-icons/edge-selection.svg deleted file mode 100644 index cc0eb8e93f..0000000000 --- a/kindred-icons/edge-selection.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit-cleartext.svg b/kindred-icons/edit-cleartext.svg deleted file mode 100644 index 9a54a7db04..0000000000 --- a/kindred-icons/edit-cleartext.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/edit-copy.svg b/kindred-icons/edit-copy.svg deleted file mode 100644 index fc75782616..0000000000 --- a/kindred-icons/edit-copy.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/kindred-icons/edit-cut.svg b/kindred-icons/edit-cut.svg deleted file mode 100644 index 5bdad50991..0000000000 --- a/kindred-icons/edit-cut.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/kindred-icons/edit-delete.svg b/kindred-icons/edit-delete.svg deleted file mode 100644 index a21f8d053a..0000000000 --- a/kindred-icons/edit-delete.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/edit-edit.svg b/kindred-icons/edit-edit.svg deleted file mode 100644 index 43ee35bd63..0000000000 --- a/kindred-icons/edit-edit.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit-element-select-box-cross.svg b/kindred-icons/edit-element-select-box-cross.svg deleted file mode 100644 index bb89b3e097..0000000000 --- a/kindred-icons/edit-element-select-box-cross.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/edit-element-select-box.svg b/kindred-icons/edit-element-select-box.svg deleted file mode 100644 index 270c91b99d..0000000000 --- a/kindred-icons/edit-element-select-box.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit-paste.svg b/kindred-icons/edit-paste.svg deleted file mode 100644 index a1d4d92945..0000000000 --- a/kindred-icons/edit-paste.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/edit-redo.svg b/kindred-icons/edit-redo.svg deleted file mode 100644 index ac278f6617..0000000000 --- a/kindred-icons/edit-redo.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit-select-all.svg b/kindred-icons/edit-select-all.svg deleted file mode 100644 index 031b8f280f..0000000000 --- a/kindred-icons/edit-select-all.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/edit-select-box-cross.svg b/kindred-icons/edit-select-box-cross.svg deleted file mode 100644 index 91f80e4b35..0000000000 --- a/kindred-icons/edit-select-box-cross.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit-select-box.svg b/kindred-icons/edit-select-box.svg deleted file mode 100644 index b9fb4dd9b5..0000000000 --- a/kindred-icons/edit-select-box.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/edit-undo.svg b/kindred-icons/edit-undo.svg deleted file mode 100644 index 6edbf22659..0000000000 --- a/kindred-icons/edit-undo.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit_Cancel.svg b/kindred-icons/edit_Cancel.svg deleted file mode 100644 index a434dfaf12..0000000000 --- a/kindred-icons/edit_Cancel.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/edit_OK.svg b/kindred-icons/edit_OK.svg deleted file mode 100644 index 90ea80d283..0000000000 --- a/kindred-icons/edit_OK.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/face-selection.svg b/kindred-icons/face-selection.svg deleted file mode 100644 index 6bca9d63d0..0000000000 --- a/kindred-icons/face-selection.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/feature_suppressed.svg b/kindred-icons/feature_suppressed.svg deleted file mode 100644 index 7bac3d6d19..0000000000 --- a/kindred-icons/feature_suppressed.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/fem-add-fem-mesh.svg b/kindred-icons/fem-add-fem-mesh.svg deleted file mode 100644 index 86f4aa788a..0000000000 --- a/kindred-icons/fem-add-fem-mesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AFM - diff --git a/kindred-icons/fem-add-material.svg b/kindred-icons/fem-add-material.svg deleted file mode 100644 index 9f07d5c5fe..0000000000 --- a/kindred-icons/fem-add-material.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AM - diff --git a/kindred-icons/fem-add-part.svg b/kindred-icons/fem-add-part.svg deleted file mode 100644 index 6ecd1a3ea8..0000000000 --- a/kindred-icons/fem-add-part.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - AP - diff --git a/kindred-icons/fem-femmesh-from-shape.svg b/kindred-icons/fem-femmesh-from-shape.svg deleted file mode 100644 index 80449811f3..0000000000 --- a/kindred-icons/fem-femmesh-from-shape.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FFS - diff --git a/kindred-icons/fem-post-geo-box.svg b/kindred-icons/fem-post-geo-box.svg deleted file mode 100644 index cf7622e833..0000000000 --- a/kindred-icons/fem-post-geo-box.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PGB - diff --git a/kindred-icons/fem-post-geo-cylinder.svg b/kindred-icons/fem-post-geo-cylinder.svg deleted file mode 100644 index 607bb85ecd..0000000000 --- a/kindred-icons/fem-post-geo-cylinder.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PGC - diff --git a/kindred-icons/fem-post-geo-isosurface.svg b/kindred-icons/fem-post-geo-isosurface.svg deleted file mode 100644 index 23fce00728..0000000000 --- a/kindred-icons/fem-post-geo-isosurface.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PGI - diff --git a/kindred-icons/fem-post-geo-plane.svg b/kindred-icons/fem-post-geo-plane.svg deleted file mode 100644 index fec8b2f5a3..0000000000 --- a/kindred-icons/fem-post-geo-plane.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PGP - diff --git a/kindred-icons/fem-post-geo-sphere.svg b/kindred-icons/fem-post-geo-sphere.svg deleted file mode 100644 index e9201f6b8b..0000000000 --- a/kindred-icons/fem-post-geo-sphere.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PGS - diff --git a/kindred-icons/fem-solver-analysis-buckling.svg b/kindred-icons/fem-solver-analysis-buckling.svg deleted file mode 100644 index 0f63721dab..0000000000 --- a/kindred-icons/fem-solver-analysis-buckling.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SAB - diff --git a/kindred-icons/fem-solver-analysis-checkmesh.svg b/kindred-icons/fem-solver-analysis-checkmesh.svg deleted file mode 100644 index 9ce7d1d8d1..0000000000 --- a/kindred-icons/fem-solver-analysis-checkmesh.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SAC - diff --git a/kindred-icons/fem-solver-analysis-frequency.svg b/kindred-icons/fem-solver-analysis-frequency.svg deleted file mode 100644 index 1befeff19b..0000000000 --- a/kindred-icons/fem-solver-analysis-frequency.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SAF - diff --git a/kindred-icons/fem-solver-analysis-static.svg b/kindred-icons/fem-solver-analysis-static.svg deleted file mode 100644 index c2a99625a5..0000000000 --- a/kindred-icons/fem-solver-analysis-static.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SAS - diff --git a/kindred-icons/fem-solver-analysis-thermomechanical.svg b/kindred-icons/fem-solver-analysis-thermomechanical.svg deleted file mode 100644 index 31e5ed91a3..0000000000 --- a/kindred-icons/fem-solver-analysis-thermomechanical.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SAT - diff --git a/kindred-icons/fem-solver-inp-editor.svg b/kindred-icons/fem-solver-inp-editor.svg deleted file mode 100644 index b9f3a1c1c3..0000000000 --- a/kindred-icons/fem-solver-inp-editor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SIE - diff --git a/kindred-icons/fgColor.svg b/kindred-icons/fgColor.svg deleted file mode 100644 index 4cf3d43981..0000000000 --- a/kindred-icons/fgColor.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - FC - diff --git a/kindred-icons/folder.svg b/kindred-icons/folder.svg deleted file mode 100644 index 96b9947335..0000000000 --- a/kindred-icons/folder.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/kindred-icons/forbidden.svg b/kindred-icons/forbidden.svg deleted file mode 100644 index 2dab41522d..0000000000 --- a/kindred-icons/forbidden.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/help-browser.svg b/kindred-icons/help-browser.svg deleted file mode 100644 index bd50b41704..0000000000 --- a/kindred-icons/help-browser.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/kindred-icons/hexagon.svg b/kindred-icons/hexagon.svg deleted file mode 100644 index 6d2d8e2706..0000000000 --- a/kindred-icons/hexagon.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - hexa - diff --git a/kindred-icons/image-open.svg b/kindred-icons/image-open.svg deleted file mode 100644 index a0d599bfcb..0000000000 --- a/kindred-icons/image-open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/image-plane.svg b/kindred-icons/image-plane.svg deleted file mode 100644 index 8334eb9194..0000000000 --- a/kindred-icons/image-plane.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/image-scaling.svg b/kindred-icons/image-scaling.svg deleted file mode 100644 index f7dcafaf80..0000000000 --- a/kindred-icons/image-scaling.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/indentLess.svg b/kindred-icons/indentLess.svg deleted file mode 100644 index df2563b43a..0000000000 --- a/kindred-icons/indentLess.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IL - diff --git a/kindred-icons/indentMore.svg b/kindred-icons/indentMore.svg deleted file mode 100644 index bc7c95b19c..0000000000 --- a/kindred-icons/indentMore.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IM - diff --git a/kindred-icons/info.svg b/kindred-icons/info.svg deleted file mode 100644 index dc43ee857b..0000000000 --- a/kindred-icons/info.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/insertImage.svg b/kindred-icons/insertImage.svg deleted file mode 100644 index c20d5b0775..0000000000 --- a/kindred-icons/insertImage.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - II - diff --git a/kindred-icons/inspect_pipette.svg b/kindred-icons/inspect_pipette.svg deleted file mode 100644 index de20dff504..0000000000 --- a/kindred-icons/inspect_pipette.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - IP - diff --git a/kindred-icons/inspection.svg b/kindred-icons/inspection.svg deleted file mode 100644 index d8cba46fa5..0000000000 --- a/kindred-icons/inspection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - insp - diff --git a/kindred-icons/internet-web-browser.svg b/kindred-icons/internet-web-browser.svg deleted file mode 100644 index 50c299d6e6..0000000000 --- a/kindred-icons/internet-web-browser.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/list.svg b/kindred-icons/list.svg deleted file mode 100644 index e0dcb9c0dc..0000000000 --- a/kindred-icons/list.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - list - diff --git a/kindred-icons/listBullet.svg b/kindred-icons/listBullet.svg deleted file mode 100644 index 0f0cad39bd..0000000000 --- a/kindred-icons/listBullet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LB - diff --git a/kindred-icons/listNumber.svg b/kindred-icons/listNumber.svg deleted file mode 100644 index 5e9d69418a..0000000000 --- a/kindred-icons/listNumber.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - LN - diff --git a/kindred-icons/menu.svg b/kindred-icons/menu.svg deleted file mode 100644 index c65a8d35c0..0000000000 --- a/kindred-icons/menu.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - menu - diff --git a/kindred-icons/multiline.svg b/kindred-icons/multiline.svg deleted file mode 100644 index 0e689b6c22..0000000000 --- a/kindred-icons/multiline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - mult - diff --git a/kindred-icons/none.svg b/kindred-icons/none.svg deleted file mode 100644 index 6e4afe9352..0000000000 --- a/kindred-icons/none.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - none - diff --git a/kindred-icons/preferences-assembly.svg b/kindred-icons/preferences-assembly.svg deleted file mode 100644 index 7ff0c0b6ec..0000000000 --- a/kindred-icons/preferences-assembly.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - asse - diff --git a/kindred-icons/preferences-bim.svg b/kindred-icons/preferences-bim.svg deleted file mode 100644 index c401756a5c..0000000000 --- a/kindred-icons/preferences-bim.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - bim - diff --git a/kindred-icons/preferences-cam.svg b/kindred-icons/preferences-cam.svg deleted file mode 100644 index bdbdc869e1..0000000000 --- a/kindred-icons/preferences-cam.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - cam - diff --git a/kindred-icons/preferences-draft.svg b/kindred-icons/preferences-draft.svg deleted file mode 100644 index ce5489faf7..0000000000 --- a/kindred-icons/preferences-draft.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - draf - diff --git a/kindred-icons/preferences-fem.svg b/kindred-icons/preferences-fem.svg deleted file mode 100644 index 02289d7bb8..0000000000 --- a/kindred-icons/preferences-fem.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - fem - diff --git a/kindred-icons/preferences-material.svg b/kindred-icons/preferences-material.svg deleted file mode 100644 index 88040c1d30..0000000000 --- a/kindred-icons/preferences-material.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - mate - diff --git a/kindred-icons/preferences-measure.svg b/kindred-icons/preferences-measure.svg deleted file mode 100644 index e30fadb8eb..0000000000 --- a/kindred-icons/preferences-measure.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - meas - diff --git a/kindred-icons/preferences-openscad.svg b/kindred-icons/preferences-openscad.svg deleted file mode 100644 index 274da5cc2f..0000000000 --- a/kindred-icons/preferences-openscad.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - open - diff --git a/kindred-icons/preferences-part_design.svg b/kindred-icons/preferences-part_design.svg deleted file mode 100644 index d73998f924..0000000000 --- a/kindred-icons/preferences-part_design.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PD - diff --git a/kindred-icons/preferences-spreadsheet.svg b/kindred-icons/preferences-spreadsheet.svg deleted file mode 100644 index a66fcc597e..0000000000 --- a/kindred-icons/preferences-spreadsheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - spre - diff --git a/kindred-icons/preferences-start.svg b/kindred-icons/preferences-start.svg deleted file mode 100644 index a81c85d92e..0000000000 --- a/kindred-icons/preferences-start.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - star - diff --git a/kindred-icons/preferences-system.svg b/kindred-icons/preferences-system.svg deleted file mode 100644 index 0405b1f519..0000000000 --- a/kindred-icons/preferences-system.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/preferences-techdraw.svg b/kindred-icons/preferences-techdraw.svg deleted file mode 100644 index d4cd002437..0000000000 --- a/kindred-icons/preferences-techdraw.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - tech - diff --git a/kindred-icons/preview-rendered.svg b/kindred-icons/preview-rendered.svg deleted file mode 100644 index e2f5d6ed90..0000000000 --- a/kindred-icons/preview-rendered.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PR - diff --git a/kindred-icons/preview-vector.svg b/kindred-icons/preview-vector.svg deleted file mode 100644 index e94a407c24..0000000000 --- a/kindred-icons/preview-vector.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - PV - diff --git a/kindred-icons/rectangle.svg b/kindred-icons/rectangle.svg deleted file mode 100644 index 3ecb5ed556..0000000000 --- a/kindred-icons/rectangle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - rect - diff --git a/kindred-icons/section-down.svg b/kindred-icons/section-down.svg deleted file mode 100644 index 35d83055b3..0000000000 --- a/kindred-icons/section-down.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SD - diff --git a/kindred-icons/section-left.svg b/kindred-icons/section-left.svg deleted file mode 100644 index f6fc901d70..0000000000 --- a/kindred-icons/section-left.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SL - diff --git a/kindred-icons/section-right.svg b/kindred-icons/section-right.svg deleted file mode 100644 index 095966720c..0000000000 --- a/kindred-icons/section-right.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SR - diff --git a/kindred-icons/section-up.svg b/kindred-icons/section-up.svg deleted file mode 100644 index c8f6e2a3a9..0000000000 --- a/kindred-icons/section-up.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - SU - diff --git a/kindred-icons/square.svg b/kindred-icons/square.svg deleted file mode 100644 index 2b322c550c..0000000000 --- a/kindred-icons/square.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - squa - diff --git a/kindred-icons/table.svg b/kindred-icons/table.svg deleted file mode 100644 index f8e7edeab6..0000000000 --- a/kindred-icons/table.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - tabl - diff --git a/kindred-icons/textBold.svg b/kindred-icons/textBold.svg deleted file mode 100644 index 64993d4889..0000000000 --- a/kindred-icons/textBold.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TB - diff --git a/kindred-icons/textItalic.svg b/kindred-icons/textItalic.svg deleted file mode 100644 index 647082ab80..0000000000 --- a/kindred-icons/textItalic.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TI - diff --git a/kindred-icons/textStrike.svg b/kindred-icons/textStrike.svg deleted file mode 100644 index fe3b04404e..0000000000 --- a/kindred-icons/textStrike.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TS - diff --git a/kindred-icons/textUnderline.svg b/kindred-icons/textUnderline.svg deleted file mode 100644 index 80528f710d..0000000000 --- a/kindred-icons/textUnderline.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - TU - diff --git a/kindred-icons/tree-doc-collapse.svg b/kindred-icons/tree-doc-collapse.svg deleted file mode 100644 index 49bbeb80ba..0000000000 --- a/kindred-icons/tree-doc-collapse.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-doc-multi.svg b/kindred-icons/tree-doc-multi.svg deleted file mode 100644 index 85dc03f9b9..0000000000 --- a/kindred-icons/tree-doc-multi.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-doc-single.svg b/kindred-icons/tree-doc-single.svg deleted file mode 100644 index 1646d70449..0000000000 --- a/kindred-icons/tree-doc-single.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-goto-sel.svg b/kindred-icons/tree-goto-sel.svg deleted file mode 100644 index 937609bec1..0000000000 --- a/kindred-icons/tree-goto-sel.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-item-drag.svg b/kindred-icons/tree-item-drag.svg deleted file mode 100644 index b946622af8..0000000000 --- a/kindred-icons/tree-item-drag.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-pre-sel.svg b/kindred-icons/tree-pre-sel.svg deleted file mode 100644 index 29a070c31c..0000000000 --- a/kindred-icons/tree-pre-sel.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/tree-rec-sel.svg b/kindred-icons/tree-rec-sel.svg deleted file mode 100644 index df08df1492..0000000000 --- a/kindred-icons/tree-rec-sel.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-sync-pla.svg b/kindred-icons/tree-sync-pla.svg deleted file mode 100644 index 5b8f6a73b7..0000000000 --- a/kindred-icons/tree-sync-pla.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/tree-sync-sel.svg b/kindred-icons/tree-sync-sel.svg deleted file mode 100644 index 5a9a19f59d..0000000000 --- a/kindred-icons/tree-sync-sel.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/kindred-icons/tree-sync-view.svg b/kindred-icons/tree-sync-view.svg deleted file mode 100644 index aba1606256..0000000000 --- a/kindred-icons/tree-sync-view.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/triangle.svg b/kindred-icons/triangle.svg deleted file mode 100644 index 506dbe2a78..0000000000 --- a/kindred-icons/triangle.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - tria - diff --git a/kindred-icons/umf-measurement.svg b/kindred-icons/umf-measurement.svg deleted file mode 100644 index cfe18a6f2b..0000000000 --- a/kindred-icons/umf-measurement.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - UM - diff --git a/kindred-icons/user.svg b/kindred-icons/user.svg deleted file mode 100644 index 0656fdf01f..0000000000 --- a/kindred-icons/user.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/utilities-terminal.svg b/kindred-icons/utilities-terminal.svg deleted file mode 100644 index 1917b246f3..0000000000 --- a/kindred-icons/utilities-terminal.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/vertex-selection.svg b/kindred-icons/vertex-selection.svg deleted file mode 100644 index d16ac0402b..0000000000 --- a/kindred-icons/vertex-selection.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/view-axonometric.svg b/kindred-icons/view-axonometric.svg deleted file mode 100644 index 984021ba3a..0000000000 --- a/kindred-icons/view-axonometric.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/view-bottom.svg b/kindred-icons/view-bottom.svg deleted file mode 100644 index b21d5ad470..0000000000 --- a/kindred-icons/view-bottom.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - B - diff --git a/kindred-icons/view-front.svg b/kindred-icons/view-front.svg deleted file mode 100644 index 606f184377..0000000000 --- a/kindred-icons/view-front.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - F - diff --git a/kindred-icons/view-fullscreen.svg b/kindred-icons/view-fullscreen.svg deleted file mode 100644 index 96144e0d4c..0000000000 --- a/kindred-icons/view-fullscreen.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/kindred-icons/view-isometric.svg b/kindred-icons/view-isometric.svg deleted file mode 100644 index 8316290720..0000000000 --- a/kindred-icons/view-isometric.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/view-left.svg b/kindred-icons/view-left.svg deleted file mode 100644 index ab4bfd8e5d..0000000000 --- a/kindred-icons/view-left.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - L - diff --git a/kindred-icons/view-measurement-cross.svg b/kindred-icons/view-measurement-cross.svg deleted file mode 100644 index 4de6721488..0000000000 --- a/kindred-icons/view-measurement-cross.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/view-measurement.svg b/kindred-icons/view-measurement.svg deleted file mode 100644 index e3bf1f6aee..0000000000 --- a/kindred-icons/view-measurement.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - 42 - diff --git a/kindred-icons/view-perspective.svg b/kindred-icons/view-perspective.svg deleted file mode 100644 index 7dd98ba6c2..0000000000 --- a/kindred-icons/view-perspective.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/view-rear.svg b/kindred-icons/view-rear.svg deleted file mode 100644 index 1711e92562..0000000000 --- a/kindred-icons/view-rear.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - R - diff --git a/kindred-icons/view-refresh.svg b/kindred-icons/view-refresh.svg deleted file mode 100644 index 586709b37d..0000000000 --- a/kindred-icons/view-refresh.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/view-right.svg b/kindred-icons/view-right.svg deleted file mode 100644 index 5e706efa36..0000000000 --- a/kindred-icons/view-right.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - R - diff --git a/kindred-icons/view-rotate-left.svg b/kindred-icons/view-rotate-left.svg deleted file mode 100644 index 38273dccb5..0000000000 --- a/kindred-icons/view-rotate-left.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/view-rotate-right.svg b/kindred-icons/view-rotate-right.svg deleted file mode 100644 index b357a8d394..0000000000 --- a/kindred-icons/view-rotate-right.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/view-select.svg b/kindred-icons/view-select.svg deleted file mode 100644 index ad660d19f0..0000000000 --- a/kindred-icons/view-select.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/view-top.svg b/kindred-icons/view-top.svg deleted file mode 100644 index 8ab4091204..0000000000 --- a/kindred-icons/view-top.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - T - diff --git a/kindred-icons/view-unselectable.svg b/kindred-icons/view-unselectable.svg deleted file mode 100644 index 9709468d9b..0000000000 --- a/kindred-icons/view-unselectable.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/warning.svg b/kindred-icons/warning.svg deleted file mode 100644 index a5fb622601..0000000000 --- a/kindred-icons/warning.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - warn - diff --git a/kindred-icons/window-new.svg b/kindred-icons/window-new.svg deleted file mode 100644 index afbbd5e62d..0000000000 --- a/kindred-icons/window-new.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/kindred-icons/zoom-all.svg b/kindred-icons/zoom-all.svg deleted file mode 100644 index 6a18fa44bd..0000000000 --- a/kindred-icons/zoom-all.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/kindred-icons/zoom-border-cross.svg b/kindred-icons/zoom-border-cross.svg deleted file mode 100644 index 6d20222eda..0000000000 --- a/kindred-icons/zoom-border-cross.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/zoom-border.svg b/kindred-icons/zoom-border.svg deleted file mode 100644 index f4cebbcf99..0000000000 --- a/kindred-icons/zoom-border.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/kindred-icons/zoom-fit-best.svg b/kindred-icons/zoom-fit-best.svg deleted file mode 100644 index b4dd1843c8..0000000000 --- a/kindred-icons/zoom-fit-best.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/kindred-icons/zoom-in.svg b/kindred-icons/zoom-in.svg deleted file mode 100644 index 4c41f1125a..0000000000 --- a/kindred-icons/zoom-in.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/kindred-icons/zoom-out.svg b/kindred-icons/zoom-out.svg deleted file mode 100644 index 5d36a7a7d9..0000000000 --- a/kindred-icons/zoom-out.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/kindred-icons/zoom-selection.svg b/kindred-icons/zoom-selection.svg deleted file mode 100644 index 8b5d8c59b3..0000000000 --- a/kindred-icons/zoom-selection.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/Gui/BitmapFactory.cpp b/src/Gui/BitmapFactory.cpp index 2afec18c30..8333807dea 100644 --- a/src/Gui/BitmapFactory.cpp +++ b/src/Gui/BitmapFactory.cpp @@ -64,10 +64,9 @@ BitmapFactoryInst& BitmapFactoryInst::instance() _pcSingleton = new BitmapFactoryInst; std::map::const_iterator it; - // Kindred Create custom icons - highest priority - // These override default FreeCAD icons with Catppuccin Mocha themed versions + // Catppuccin Mocha themed icons - highest priority (generated by icons/retheme.py) _pcSingleton->addPath( - QStringLiteral("%1/kindred-icons").arg(QString::fromStdString(App::Application::getHomePath())) + QStringLiteral("%1/icons/themed").arg(QString::fromStdString(App::Application::getHomePath())) ); it = App::GetApplication().Config().find("ProgramIcons"); diff --git a/src/Gui/CMakeLists.txt b/src/Gui/CMakeLists.txt index d46967af3d..1949574784 100644 --- a/src/Gui/CMakeLists.txt +++ b/src/Gui/CMakeLists.txt @@ -1634,14 +1634,13 @@ INSTALL( ${CMAKE_INSTALL_DATADIR}/3Dconnexion ) -# Kindred Create custom icons - Catppuccin Mocha themed overrides +# Catppuccin Mocha themed icons (generated by icons/retheme.py) INSTALL( DIRECTORY - ${CMAKE_SOURCE_DIR}/kindred-icons/ + ${CMAKE_SOURCE_DIR}/icons/themed/ DESTINATION - kindred-icons + icons/themed FILES_MATCHING PATTERN "*.svg" PATTERN "*.png" - PATTERN "README.md" )