-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/david-cattermole/mayaMat…
…chMoveSolver into develop
- Loading branch information
Showing
25 changed files
with
399 additions
and
215 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
Mesh Tools | ||
========== | ||
|
||
*Write section description here.* | ||
|
||
.. _mesh-from-points-ref: | ||
|
||
Mesh From Points | ||
---------------- | ||
|
||
*Write mesh from points tool description here* | ||
|
||
.. figure:: images/tools_mesh_from_points_window.png | ||
:alt: Mesh from Points Window. | ||
:align: right | ||
:width: 100% | ||
|
||
To open the window, use this Python command: | ||
|
||
.. code:: python | ||
import mmSolver.tools.meshfrompoints.tool as tool | ||
tool.main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
58 changes: 0 additions & 58 deletions
58
python/mmSolver/tools/meshfromlocators/ui/meshfromlocators_layout.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Copyright (C) 2024 Patcha Saheb Binginapalli. | ||
# | ||
# This file is part of mmSolver. | ||
# | ||
# mmSolver is free software: you can redistribute it and/or modify it | ||
# under the terms of the GNU Lesser General Public License as | ||
# published by the Free Software Foundation, either version 3 of the | ||
# License, or (at your option) any later version. | ||
# | ||
# mmSolver is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU Lesser General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with mmSolver. If not, see <https://www.gnu.org/licenses/>. | ||
# | ||
|
||
WINDOW_TITLE = 'Mesh From Points' | ||
|
||
# We must have at least 3 points to make a mesh. | ||
MINIMUM_NUMBER_OF_POINTS = 3 | ||
|
||
# The different types of meshes that can be created. | ||
MESH_TYPE_FULL_MESH_VALUE = 'full_mesh' | ||
MESH_TYPE_BORDER_MESH_VALUE = 'border_mesh' | ||
MESH_TYPE_BORDER_EDGE_STRIP_MESH_VALUE = 'border_edge_strip_mesh' | ||
MESH_TYPE_VALUES = [ | ||
MESH_TYPE_FULL_MESH_VALUE, | ||
MESH_TYPE_BORDER_MESH_VALUE, | ||
MESH_TYPE_BORDER_EDGE_STRIP_MESH_VALUE, | ||
] | ||
|
||
# Default values. | ||
DEFAULT_MESH_NAME = 'meshFromPoints' | ||
DEFAULT_STRIP_WIDTH = 1.0 | ||
|
||
# Config value keys. | ||
CONFIG_STRIP_WIDTH_KEY = 'mmSolver_meshfrompoints_stripWidth' |
File renamed without changes.
Oops, something went wrong.