diff --git a/.claude/settings.local.json b/.claude/settings.local.json index e1ab830..56b4f6e 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -1,7 +1,9 @@ { "permissions": { "allow": [ - "Bash(xargs cat:*)" + "Bash(xargs cat:*)", + "Bash(grep -n ' $' PluginAppLoader/Apps/SettingsImportExport/README.md2)", + "Bash(grep *)" ] } } diff --git a/PluginAppLoader/Apps/AppTemplate/README.md b/PluginAppLoader/Apps/AppTemplate/README.md index 0c6c63f..22026ad 100644 --- a/PluginAppLoader/Apps/AppTemplate/README.md +++ b/PluginAppLoader/Apps/AppTemplate/README.md @@ -1,9 +1,10 @@ -# RoboDK App Template +# RoboDK Add-in Template -The App Template for RoboDK provides the necessary examples to build a RoboDK Add-in. -It can be used as a template to build your own RoboDK Apps. +The Add-in Template for RoboDK provides the necessary examples to build a RoboDK Add-in. -For more information about RoboDK Add-ins and Apps visit the documentation: +It can be used as a template to build your own RoboDK Add-ins. + +For more information about RoboDK Add-ins, visit the documentation: - RoboDK documentation: . - RoboDK API for Add-ins or Apps: . diff --git a/PluginAppLoader/Apps/BoxSpawner/README.md b/PluginAppLoader/Apps/BoxSpawner/README.md index ba7367e..40f7d8c 100644 --- a/PluginAppLoader/Apps/BoxSpawner/README.md +++ b/PluginAppLoader/Apps/BoxSpawner/README.md @@ -1,36 +1,48 @@ # Box Spawner -The Box Spawner App for RoboDK lets you programmatically add box objects in your RoboDK Station. -You can customize the spawner location, box parameters, and request a new box from a RoboDK Program. -Multiple spawner location are supported by providing a spawner ID in your program call. +The Box Spawner Add-in for RoboDK allows you to programmatically add box objects in your RoboDK station. -- For more information about RoboDK Apps, visit the +It automates the creation, scaling, placement, and conveyor attachment of box components, making it ideal for simulating pick-and-place, palletizing, or conveyor-fed applications. + +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). ## Features -### Editor +- **Editor Interface:** Configure dimensions, frames, conveyor attachments, and randomization noise. +- **Automated Box Generation:** Generate 3D boxes dynamically with custom dimensions and automatic labeling. +- **Custom Spawn Locations:** Spawn items directly relative to any RoboDK item (reference frame or station base). +- **Conveyor Relocation:** Automatically detect and attach spawned boxes to the closest moving conveyor mechanism or a specific frame. +- **Randomization Control:** Add position offsets, rotational noise, and scale variations to simulate real-world variability. +- **Multi-Spawner Profiles:** Configure and maintain multiple spawner profiles using Spawner IDs. +- **Programmatic Execution:** Trigger spawning manually via the toolbar or programmatically within RoboDK programs. -Use the Editor to set the spawner settings. +## Usage -- Units: mm or in -- Box size L/W/H in the above units (or X/Y/Z) -- Spawn location: RoboDK item (frame or station) where the box will be spawn -- Conveyor relocation: automatically transfer the box to the closest conveyor -- Randomization: randomize the position, orientation and scale of the box +### Spawner -![Interface](./docs/interface.png) +Click the **Spawn** icon in the toolbar to spawn a box instantly using the active profile (defaults to Spawner ID #0). -### Spawner +You can also navigate to **Utilities - Box Spawner - Spawn** to generate a box. -Use the spawner button to create a new box in you station using the Editor parameters. -The spawner button defaults to the spawner ID #0. +![Utilities](./docs/utilities.png) -![Icons](./docs/icons.png) +### Editor + +Use the Editor to set the spawner settings. + +- Units: In millimeters or inches. +- Box Size: L/W/H (or X/Y/Z) in the above units. +- Spawn Location: RoboDK item (frame or station) where the box will be spawned. +- Conveyor Relocation: Automatically transfer the box to the closest conveyor. +- Randomization: Randomize the position, orientation, and scale of the box. + +![Interface](./docs/interface.png) ### Add Python Script -Add a python script in your station that will spawn a box when called. Useful for spawning boxes in a Program. -For example, the Program call `Call SpawnBox(2)` will use the spawner ID #2. +Add a python script in your station (by going to Utilities - Box Spawner - Add Script) that will spawn a box when called. Useful for spawning boxes when a RoboDK program is running. + +For example, the program call `Call SpawnBox(1)` will use the Spawner ID #1 and spawn the box according to **Box Spawner Settings (1)**. diff --git a/PluginAppLoader/Apps/BoxSpawner/docs/icons.png b/PluginAppLoader/Apps/BoxSpawner/docs/icons.png deleted file mode 100644 index 745074d..0000000 Binary files a/PluginAppLoader/Apps/BoxSpawner/docs/icons.png and /dev/null differ diff --git a/PluginAppLoader/Apps/BoxSpawner/docs/interface.png b/PluginAppLoader/Apps/BoxSpawner/docs/interface.png index 24dc3b1..57b7fc2 100644 Binary files a/PluginAppLoader/Apps/BoxSpawner/docs/interface.png and b/PluginAppLoader/Apps/BoxSpawner/docs/interface.png differ diff --git a/PluginAppLoader/Apps/BoxSpawner/docs/utilities.png b/PluginAppLoader/Apps/BoxSpawner/docs/utilities.png new file mode 100644 index 0000000..5cb9da9 Binary files /dev/null and b/PluginAppLoader/Apps/BoxSpawner/docs/utilities.png differ diff --git a/PluginAppLoader/Apps/CurveUtilities/README.md b/PluginAppLoader/Apps/CurveUtilities/README.md index 96794f6..2ff3074 100644 --- a/PluginAppLoader/Apps/CurveUtilities/README.md +++ b/PluginAppLoader/Apps/CurveUtilities/README.md @@ -1,8 +1,8 @@ # Curve Utilities -The Curve Utilities App for RoboDK adds tools to generate and edit curve objects. +The Curve Utilities Add-in for RoboDK adds tools to generate and edit curve objects. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). diff --git a/PluginAppLoader/Apps/CycleTime/README.md b/PluginAppLoader/Apps/CycleTime/README.md index a76f6b2..8ee987a 100644 --- a/PluginAppLoader/Apps/CycleTime/README.md +++ b/PluginAppLoader/Apps/CycleTime/README.md @@ -1,8 +1,10 @@ # Cycle Time -The Cycle Time App for RoboDK is a toolbox for cycle time estimation of robot programs. +The Cycle Time Add-in for RoboDK is a toolbox for cycle time estimation of robot programs. + Retrieve valuable metrics from your robot programs, such as feasibility, travel length (mm) and travel time (seconds). -Perform time study by comparing performance with different robot speed. + +Perform a time study by comparing performance with different robot speeds. ![Results](./docs/results.png) diff --git a/PluginAppLoader/Apps/GameController/README.md b/PluginAppLoader/Apps/GameController/README.md index 8fa4ca8..2b76563 100644 --- a/PluginAppLoader/Apps/GameController/README.md +++ b/PluginAppLoader/Apps/GameController/README.md @@ -1,8 +1,8 @@ # Game Controller -The Game Controller App for RoboDK allows you to control your robot arm using a game controller. +The Game Controller Add-in for RoboDK allows you to control your robot arm using a game controller. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). @@ -14,15 +14,15 @@ The Game Controller App for RoboDK allows you to control your robot arm using a ## Usage -Press the Controller icon in the toolbar to start the app, and click again to stop it. You can also navigate to Connect-Game Controller-Launch Game Controller to start the app. +Press the Controller icon in the toolbar to start the Add-in, and click again to stop it. You can also navigate to Connect - Game Controller - Launch Game Controller to start the Add-in. ![Start](./docs/start.png) Status updates will be available on the status bar of RoboDK (bottom of the screen). -By default, this app moves the simulated robot. You can also move the real robot if you are connected using the RoboDK driver for your robot controller: +By default, this Add-in moves the simulated robot. You can also move the real robot if you are connected using the RoboDK driver for your robot controller: -- Select Connect-Connect Robot +- Select Connect - Connect Robot - Enter the IP of the robot - Select Connect @@ -44,6 +44,6 @@ The default mapping was created for an Xbox One controller. ### Settings -You can edit the settings to suit your needs, such as robot speeds, step size, step range, initial settings, etc. Find the settings in Connect-Game Controller-Settings. +You can edit the settings to suit your needs, such as robot speeds, step size, step range, initial settings, etc. Find the settings in Connect - Game Controller - Settings. ![Settings](./docs/settings.png) \ No newline at end of file diff --git a/PluginAppLoader/Apps/ItemUtilities/README.md b/PluginAppLoader/Apps/ItemUtilities/README.md index 3e3e424..a7d9aed 100644 --- a/PluginAppLoader/Apps/ItemUtilities/README.md +++ b/PluginAppLoader/Apps/ItemUtilities/README.md @@ -1,16 +1,20 @@ # Item Utilities -The Item Utilities App for RoboDK adds utility functions to manipulate Items, such as objects and robots. +The Item Utilities Add-in for RoboDK adds utility functions to manipulate items such as objects and robots directly in your RoboDK station. -- For more information about RoboDK Apps, visit the +You can access its features directly from the menu bar by navigating to **Utilities - Item Utilities**, or by right-clicking any item in the station or station tree and selecting **Item Utilities**. + +![Utilities](./docs/utilities.png) + +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). ## Features -- Replace an object in-place -- Replace a robot, taking account the robot base offset and the program/target links -- Attach an object to a robot link (permanently) -- Scale an object -- Simplify meshes +- **Replace Object:** Swap an existing station object with a new 3D model while preserving its exact physical location. +- **Replace Robot:** Change robot models while maintaining existing program/target links, base offsets, and attached tools. +- **Attach Object To Robot Link:** Permanently lock objects (e.g., dress packs, harnesses, custom fixtures) onto specific robot joints/links. +- **Scale Object:** Uniformly or non-uniformly resize objects and curves along the X, Y, and Z axes. +- **Simplify Object:** Clean up dense meshes by removing redundant triangles and small geometry to enhance simulation performance. diff --git a/PluginAppLoader/Apps/ItemUtilities/docs/utilities.png b/PluginAppLoader/Apps/ItemUtilities/docs/utilities.png new file mode 100644 index 0000000..388baa3 Binary files /dev/null and b/PluginAppLoader/Apps/ItemUtilities/docs/utilities.png differ diff --git a/PluginAppLoader/Apps/ObjectDeleter/README.md b/PluginAppLoader/Apps/ObjectDeleter/README.md index 9341091..5f65e98 100644 --- a/PluginAppLoader/Apps/ObjectDeleter/README.md +++ b/PluginAppLoader/Apps/ObjectDeleter/README.md @@ -1,13 +1,13 @@ # Object Deleter -The Object Deleter App for RoboDK adds customizable zones to delete objects. +The Object Deleter Add-in for RoboDK adds customizable zones to delete objects. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). -## Feature +## Features - Use the Editor to set the Object Deleter settings. - Radius: radius of the delete zone, in mm. diff --git a/PluginAppLoader/Apps/PointUtilities/README.md b/PluginAppLoader/Apps/PointUtilities/README.md index a58b7c4..5f9b5f6 100644 --- a/PluginAppLoader/Apps/PointUtilities/README.md +++ b/PluginAppLoader/Apps/PointUtilities/README.md @@ -1,8 +1,8 @@ # Point Utilities -The Point Utilities App for RoboDK adds tools to generate and edit point objects. +The Point Utilities Add-in for RoboDK adds tools to generate and edit point objects. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). @@ -11,6 +11,5 @@ The Point Utilities App for RoboDK adds tools to generate and edit point objects ## Features -**Add Point(s) On Surface:** Click on any object's surface mesh to place points continuously while the action is active. It automatically reads the physical mouse contact point to calculate local positional coordinates and geometric surface normal vectors.This feature supports adding new point structures directly to the selected object or outputting them as standalone named target items. - -**Convert Point(s) To Target(s):** Transforms point positions into real robot targets using the local normal vector to align the tool Z-axis approach. This also includes a toggle setting to invert point normal paths to ensure proper entry approach direction for robot kinematics. It sorts the index order of point lists based on distance to ensure the robot moves smoothly between neighboring points without erratic jumps. +- **Add Point(s) On Surface:** Click on any object's surface mesh to place points continuously while the action is active. It automatically reads the physical mouse contact point to calculate local positional coordinates and geometric surface normal vectors. This feature supports adding new point structures directly to the selected object or outputting them as standalone named target items. +- **Convert Point(s) To Target(s):** Transforms point positions into real robot targets using the local normal vector to align the tool Z-axis approach. This also includes a toggle setting to invert point normal paths to ensure proper entry approach direction for robot kinematics. It sorts the index order of point lists based on distance to ensure the robot moves smoothly between neighboring points without erratic jumps. diff --git a/PluginAppLoader/Apps/ProgUtilities/README.md b/PluginAppLoader/Apps/ProgUtilities/README.md index e7d8a4b..f67b12f 100644 --- a/PluginAppLoader/Apps/ProgUtilities/README.md +++ b/PluginAppLoader/Apps/ProgUtilities/README.md @@ -1,8 +1,8 @@ # Program Utilities -The Program utilities App for RoboDK adds tools to edit programs and program instructions. +The Program Utilities Add-in for RoboDK adds tools to edit programs and program instructions. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). @@ -11,19 +11,24 @@ The Program utilities App for RoboDK adds tools to edit programs and program ins ### Convert MoveC to MoveL -Right-click one or more programs to convert any MoveC command in a series of linear movements (MoveL). -The default step size is 1 mm, or 1 degree. You can edit this settings in the ConvertMoveC.py. +Right-click one or more programs to convert any MoveC command into a series of linear movements (MoveL). + +The default step size is 1 mm, or 1 degree. You can edit these settings in the ConvertMoveC.py. + A new program will be created after the conversion. ### Expand sub-program calls Right-click one or more programs to expand (inline) any sub-program calls. -By default, this process is recursive (sub-programs in sub-programs are also inline). You can edit this settings in the ExpandSubPrograms.py. + +By default, this process is recursive (sub-programs in sub-programs are also inline). You can edit these settings in the ExpandSubPrograms.py. + A new program will be created. ### Merge programs Right-click two or more programs to merge them. + A new program will be created. ### Visibility utilities diff --git a/PluginAppLoader/Apps/Reachability/README.md b/PluginAppLoader/Apps/Reachability/README.md index 0b8f0ed..e579ff3 100644 --- a/PluginAppLoader/Apps/Reachability/README.md +++ b/PluginAppLoader/Apps/Reachability/README.md @@ -1,8 +1,8 @@ # Reachability -The Reachability App for RoboDK adds preview capabilities of reachable tool poses from the current position. +The Reachability Add-in for RoboDK adds preview capabilities of reachable tool poses from the current position. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). diff --git a/PluginAppLoader/Apps/Record/README.md b/PluginAppLoader/Apps/Record/README.md index 037becb..c7cdf59 100644 --- a/PluginAppLoader/Apps/Record/README.md +++ b/PluginAppLoader/Apps/Record/README.md @@ -1,16 +1,21 @@ # Record -The Record App for RoboDK adds cinematic recording capabilities to RoboDK. +The Record Add-in for RoboDK adds cinematic recording capabilities to RoboDK. + Attach a camera to any object, and record to video file from its perspective. -- For more information about RoboDK Apps, visit the +You can access all its features directly from the **Record** menu in the top menu bar or via the dedicated **Record toolbar**. + +![Menu](./docs/menu.png) + +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). ## Features -- Attach a camera to an Item -- Set the camera static or dynamic -- Change the camera resolution -- Save the video as .mp4 or .avi +- **Direct 3D Video Capture:** Record simulation motion cleanly, outputting only the 3D environment and the station tree. +- **Attach Camera (3D View):** Lock the main camera onto a moving robot joint, tool, or part to create dynamic tracking shots. +- **Standardized Aspect Ratios:** Lock dimensions to exact resolutions before recording to prevent image distortion. +- **Customizable Output Settings:** Adjust framerate (FPS) and choose between standard `.mp4` and uncompressed `.avi` video formats. diff --git a/PluginAppLoader/Apps/Record/docs/menu.png b/PluginAppLoader/Apps/Record/docs/menu.png new file mode 100644 index 0000000..f352794 Binary files /dev/null and b/PluginAppLoader/Apps/Record/docs/menu.png differ diff --git a/PluginAppLoader/Apps/SetStyle/README.md b/PluginAppLoader/Apps/SetStyle/README.md index e3c29e9..dac6044 100644 --- a/PluginAppLoader/Apps/SetStyle/README.md +++ b/PluginAppLoader/Apps/SetStyle/README.md @@ -1,8 +1,8 @@ # Set Style -The Set Style App for RoboDK adds quick appearance presets to edit curves, points and objects. +The Set Style Add-in for RoboDK adds quick appearance presets to edit curves, points and objects. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). diff --git a/PluginAppLoader/Apps/SettingsImportExport/README.md b/PluginAppLoader/Apps/SettingsImportExport/README.md index 8da3fd6..ed93a8f 100644 --- a/PluginAppLoader/Apps/SettingsImportExport/README.md +++ b/PluginAppLoader/Apps/SettingsImportExport/README.md @@ -1,7 +1,8 @@ # RoboDK Import-Export Settings -The Import-Export Settings App for RoboDK allows you to export and import all RoboDK global settings. -This allows sharing settings among different computers and create backups. +The Import-Export Settings Add-in for RoboDK allows you to export and import all RoboDK global settings. + +This allows sharing settings among different computers and creating backups. These settings are accessible from the menu `Tools->Options`. @@ -12,5 +13,5 @@ This Add-in adds the following actions in the menu and the toolbar: - Settings Import-Export - Export: Export the settings as an .INI file - Import: Import the settings from an .INI file - + Note: The license settings are also exported and imported. diff --git a/PluginAppLoader/Apps/Snapshot/README.md b/PluginAppLoader/Apps/Snapshot/README.md index fe58a49..ad88cdb 100644 --- a/PluginAppLoader/Apps/Snapshot/README.md +++ b/PluginAppLoader/Apps/Snapshot/README.md @@ -1,9 +1,10 @@ # Snapshot -The Snapshot App for RoboDK adds high resolution snapshot (print screen) capabilities to RoboDK. +The Snapshot Add-in for RoboDK adds high resolution snapshot (print screen) capabilities to RoboDK. + Take a snapshot or high resolution snapshot of the 3D view and save it on disk. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). diff --git a/PluginAppLoader/Apps/Sound/README.md b/PluginAppLoader/Apps/Sound/README.md index 5faa5de..47077e0 100644 --- a/PluginAppLoader/Apps/Sound/README.md +++ b/PluginAppLoader/Apps/Sound/README.md @@ -1,7 +1,8 @@ # Sound -The Sound App for RoboDK adds programmable sound effects and background music/noise to RoboDK stations. -You can use this App to create immersive VR stations. +The Sound Add-in for RoboDK adds programmable sound effects and background music/noise to RoboDK stations. + +You can use this Add-in to create immersive VR stations. ## Features diff --git a/PluginAppLoader/Apps/SurfacePatternGenerator/README.md b/PluginAppLoader/Apps/SurfacePatternGenerator/README.md index 53bb193..adb28db 100644 --- a/PluginAppLoader/Apps/SurfacePatternGenerator/README.md +++ b/PluginAppLoader/Apps/SurfacePatternGenerator/README.md @@ -1,30 +1,32 @@ # Surface Pattern Generator -The Surface Pattern Generator (SPG) App for RoboDK lets you generate simple surface patterns on an object surface. +The Surface Pattern Generator (SPG) Add-in for RoboDK lets you project simple geometric patterns directly onto 3D object surfaces. -- For more information about RoboDK Apps, visit the +It automates path mapping for surface finishing, spray painting, welding, polishing, and area scanning by automatically linking the projected geometry to a Curve Follow Project (CFP) and generating executable robot programs. + +![Interface](./docs/interface.png) + +You can access its features directly from the menu by navigating to **Utilities - Surface Pattern Generator** or by clicking the **Surface Pattern Generator** icon on the toolbar. + +![Icon](./docs/icon.png) + +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). ## Features -- Define a region of interest (size, step size) -- Create connected or discontinued lines on surfaces -- Distribute points along the lines -- Create multi-passes with vertical offsets -- Automatically create a Curve Follow Project on creation +- **Geometric Path Projection:** Casts customizable 2D grid patterns directly onto complex 3D curved surfaces. +- **Custom Pattern Control:** Adjust boundary sizes, step resolutions, triangular tapering, and line distributions. +- **Surface Trimming:** Automatically removes path points that fall outside part boundaries or over hollow cutouts. +- **Multi-Pass Stacking:** Generate multiple layered passes with defined Z-axis offsets for additive or layered operations. +- **Automated Program Generation:** Automatically creates and solves a Curve Follow Project (CFP) with custom TCP tilt angles and operation speeds. ## Usage -### Setup - -- Place a Frame in the station at the same level in the tree as the object and with the desired name of the CFP -- Orient the frame so that the Z axis points towards the object surface, and the X and Y axis in the desired orientation +Place a Frame in the station at the same level in the tree as the object and with the desired name of the CFP. Orient the frame so that the Z axis points towards the object surface, and the X and Y axis in the desired orientation. -### Generating the pattern +Click the **Surface Pattern Generator** toolbar icon or select it from the **Utilities** menu, then pick your target part model. After adjusting your layout dimensions, point steps, tool inclination angles, and travel speeds in the settings dialog, click **OK**. The add-in will automatically construct the 3D projection curve, generate a linked Curve Follow Project named after your reference frame, solve the motion paths, and build the final robot program. -- Open the SPG App and select the desired object -- Enter the pattern settings, such as the dimensions and resolution of the pattern, the tool settings, etc. -- Update the pattern to see the generate lines, CFP, and program -- Save the settings +**Note:** Access the configuration window via **Utilities - Surface Pattern Generator - Settings** to customize pattern parameters and program outputs. diff --git a/PluginAppLoader/Apps/SurfacePatternGenerator/docs/icon.png b/PluginAppLoader/Apps/SurfacePatternGenerator/docs/icon.png new file mode 100644 index 0000000..da8fcc0 Binary files /dev/null and b/PluginAppLoader/Apps/SurfacePatternGenerator/docs/icon.png differ diff --git a/PluginAppLoader/Apps/SurfacePatternGenerator/docs/interface.png b/PluginAppLoader/Apps/SurfacePatternGenerator/docs/interface.png new file mode 100644 index 0000000..065d0bd Binary files /dev/null and b/PluginAppLoader/Apps/SurfacePatternGenerator/docs/interface.png differ diff --git a/PluginAppLoader/Apps/ViewManager/README.md b/PluginAppLoader/Apps/ViewManager/README.md index 70ec165..6fe9691 100644 --- a/PluginAppLoader/Apps/ViewManager/README.md +++ b/PluginAppLoader/Apps/ViewManager/README.md @@ -1,9 +1,10 @@ # View Manager -The View Manager App for RoboDK adds 3D view and interface presets. -It can be used to setup the interface for VR, set up the environnement for video recordings, or to simply save your preferred preset. +The View Manager Add-in for RoboDK adds 3D view and interface presets. -- For more information about RoboDK Apps, visit the +It can be used to set up the interface for VR, set up the environment for video recordings, or simply save your preferred preset. + +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues). diff --git a/PluginAppLoader/Apps/ViewUtilities/README.md b/PluginAppLoader/Apps/ViewUtilities/README.md index e7619e3..f3b7406 100644 --- a/PluginAppLoader/Apps/ViewUtilities/README.md +++ b/PluginAppLoader/Apps/ViewUtilities/README.md @@ -1,8 +1,8 @@ # View Utilities -The View Utilities App for RoboDK provide bulk visibility functions (visible/hidden) to RoboDK. +The View Utilities Add-in for RoboDK provides bulk visibility functions (visible/hidden) to RoboDK. -- For more information about RoboDK Apps, visit the +- For more information about RoboDK Add-ins, visit the [documentation](https://robodk.com/doc/en/PythonAPI/app.html). - Submit bug reports and feature suggestions on our [GitHub](https://github.com/RoboDK/Plug-In-Interface/issues).