Add icons and test model

This commit is contained in:
Mark Voltov 2024-06-19 23:13:31 +03:00
parent 28a8648651
commit c2e375f854
10 changed files with 16 additions and 16 deletions

View file

@ -11,7 +11,7 @@ from .usecases.asm4parser_usecase import Asm4StructureParseUseCase
from .constraints_operator import create_assembly_parameters, create_fastener_set, create_assembly_sequence, create_clearance_constraint, export_assembly_settings
from .geometric_feasibility_predicate.main import main as structure_analysis
from .asm_graph import main as asm_graph
from .autodock_generator import main as asm_layers
# from .autodock_generator import main as asm_layers
from .assembly_graph_generation import main as structure_graph
if FreeCAD.GuiUp:
@ -337,42 +337,42 @@ spawnClassCommand("Publish_Project",
"ToolTip": "Save and export project files"})
spawnClassCommand("Create Assembly Parameters",
create_assembly_parameters,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
{"Pixmap": str(os.path.join(ICONPATH, "galternatives.ico")),
"MenuText": "Create Assembly Parameters",
"ToolTip": "Create Assembly Parameters"})
spawnClassCommand("Create Fastener Set",
create_fastener_set,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
{"Pixmap": str(os.path.join(ICONPATH, "screw26.ico")),
"MenuText": "Create Fastener Set",
"ToolTip": "Create Fastener Set"})
spawnClassCommand("Compute Assembly Sequence",
structure_analysis,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
"MenuText": "Create Fastener Set",
"ToolTip": "Create Fastener Set"})
{"Pixmap": str(os.path.join(ICONPATH, "free-icon-software-5741483.png")),
"MenuText": "Compute Assembly Sequence",
"ToolTip": "Compute Assembly Sequence"})
spawnClassCommand("Create Assembly Sequence",
create_assembly_sequence,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
{"Pixmap": str(os.path.join(ICONPATH, "assembly.ico")),
"MenuText": "Create Assembly Sequence",
"ToolTip": "Create Assembly Sequence"})
spawnClassCommand("Export Assembly Settings",
export_assembly_settings,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
{"Pixmap": str(os.path.join(ICONPATH, "free-icon-export-724827.ico")),
"MenuText": "Export Assembly Settings",
"ToolTip": "Export Assembly Settings"})
spawnClassCommand("Create Assembly Layers",
asm_layers,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
"MenuText": "Create Assembly Layers",
"ToolTip": "Create Assembly Layers"})
# spawnClassCommand("Create Assembly Layers",
# asm_layers,
# {"Pixmap": str(os.path.join(ICONPATH, ".svg")),
# "MenuText": "Create Assembly Layers",
# "ToolTip": "Create Assembly Layers"})
spawnClassCommand("Create Structure Graph",
structure_graph,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
{"Pixmap": str(os.path.join(ICONPATH, "pngwing.com.ico")),
"MenuText": "Create Structure Graph",
"ToolTip": "Create Structure Graph"})
spawnClassCommand("Create Assembly Graph",
asm_graph,
{"Pixmap": str(os.path.join(ICONPATH, ".svg")),
{"Pixmap": str(os.path.join(ICONPATH, "iteration_3316689.ico")),
"MenuText": "Create Assembly Graph",
"ToolTip": "Create Assembly Graph"})

View file

@ -57,7 +57,7 @@ class Robossembler(Gui.Workbench):
"Create Assembly Sequence",
"Export Assembly Settings",
"Compute Assembly Sequence",
"Create Assembly Layers",
# "Create Assembly Layers",
"Create Structure Graph",
"Create Assembly Graph"

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.