Wykres commitów

1897 Commity (1.0.26)

Autor SHA1 Wiadomość Data
Alain Pelletier b69e25f632
Merge pull request #145 from SpectralVectors/master
Fix for 1.0.8 Install Error
2024-03-27 14:34:04 -03:00
Release robot 9d2dcbf7ea Version number 2024-03-27 17:18:52 +00:00
SpectralVectors 07be079d23
Update __init__.py, fix 1.0.8 install error
There was a space in bl_info and that caused some bugs.
2024-03-27 13:18:14 -04:00
Release robot 2a6961ebbf Version number 2024-03-26 12:56:35 +00:00
Alain Pelletier 810cf762af
Merge pull request #144 from SpectralVectors/import-fix
Import fix
2024-03-25 16:04:43 -03:00
Alain Pelletier 9c68cc2345
Merge branch 'master' into import-fix 2024-03-25 16:04:19 -03:00
SpectralVectors c9c9280408
Autoformat fix
Caught a handful more lines that needed to be reverted to clean up the diff.
2024-03-23 11:44:22 -04:00
SpectralVectors 8c905d0f68
Autoformat fix
Caught a handful more lines that needed to be reverted to clean up the diff.
2024-03-23 11:43:14 -04:00
SpectralVectors dd25498ebf
Autoformat fix
Caught a handful more lines that needed to be reverted to clean up the diff.
2024-03-23 11:42:09 -04:00
SpectralVectors 94ca6d1a04
Autoformat fix
Caught a handful more lines that needed to be reverted to clean up the diff.
2024-03-23 11:40:22 -04:00
SpectralVectors 9ebcbf2471
Import fix update - bpy.utils, autoformat fix
While rearranging and cleaning up the utils imports in the initial 'Import fix' commit I deleted `utils.` from `bpy.utils.script_paths()` in the ops.py file.
This has been fixed, and I took the opportunity to reverse the autoformat issue (changed line length from 100 to 89 between commits), and restore all the code to its previous state.
I made one exception:
- comments that came at the end of the line that were moved to the line above

All functional code has been restored to its previous format.
2024-03-23 11:19:25 -04:00
SpectralVectors f3abf4e303
Import fix update - bpy.utils, autoformat fix
While rearranging and cleaning up the utils imports in the initial 'Import fix' commit I deleted `utils.` from `bpy.utils.script_paths()` in the ops.py file.
This has been fixed, and I took the opportunity to reverse the autoformat issue (changed line length from 100 to 89 between commits), and restore all the code to its previous state.
I made one exception:
- comments that came at the end of the line that were moved to the line above

All functional code has been restored to its previous format.
2024-03-23 11:18:14 -04:00
SpectralVectors 2e3acdd750
Import fix update - bpy.utils, autoformat fix
While rearranging and cleaning up the utils imports in the initial 'Import fix' commit I deleted `utils.` from `bpy.utils.script_paths()` in the ops.py file.
This has been fixed, and I took the opportunity to reverse the autoformat issue (changed line length from 100 to 89 between commits), and restore all the code to its previous state.
I made one exception:
- comments that came at the end of the line that were moved to the line above

All functional code has been restored to its previous format.
2024-03-23 11:16:55 -04:00
SpectralVectors 3a546c2758
Import fix update - bpy.utils, autoformat fix
While rearranging and cleaning up the utils imports in the initial 'Import fix' commit I deleted `utils.` from `bpy.utils.script_paths()` in the ops.py file.
This has been fixed, and I took the opportunity to reverse the autoformat issue (changed line length from 100 to 89 between commits), and restore all the code to its previous state.
I made one exception:
- comments that came at the end of the line that were moved to the line above

All functional code has been restored to its previous format.
2024-03-23 11:14:38 -04:00
SpectralVectors 4b5dddc524
Update version.py 2024-03-22 20:57:50 -04:00
SpectralVectors 2a22fb19b1
Update __init__.py 2024-03-22 20:57:33 -04:00
SpectralVectors e8a9333f52
Update version
version was previously only updated in bl_info, it has now been updated to match in the version.py file as well, which should allow it to display in the main UI.
2024-03-22 20:40:31 -04:00
SpectralVectors 803a5c5d63
Import Fix, funcs moved, refs updated, ocl rename
Changed all imports from absolute to relative: 
- instead of importing the module 'cam' now imports come from '.' the relative parent folder
- importing the module into itself resulted in a circular import error, relative imports avoid this

Moved Functions, refs updated:
- some functions  (and 2 variables) only existed on the base level of the module, in the init file, and could not otherwise be accessed, they were moved into the utils file with other similar functions
- these were primarily called as update functions for Properties scattered across the addon, these have all been updated to reflect the new location and import convention

opencamlib_version rename:
- in 2 files there was a local variable named 'opencamlib_version' that was defined by a function called 'opencamlib_version' that returned the opencamlib_version
- this seemed to confuse Blender into thinking that it was being called before it was defined, and simply changing the variable name to 'ocl_version' while keeping the function name as 'opencamlib_version' fixed the issue
2024-03-22 17:55:41 -04:00
SpectralVectors cd4856c3d0
Import Fix, funcs moved, refs updated, ocl rename
Changed all imports from absolute to relative: 
- instead of importing the module 'cam' now imports come from '.' the relative parent folder
- importing the module into itself resulted in a circular import error, relative imports avoid this

Moved Functions, refs updated:
- some functions  (and 2 variables) only existed on the base level of the module, in the init file, and could not otherwise be accessed, they were moved into the utils file with other similar functions
- these were primarily called as update functions for Properties scattered across the addon, these have all been updated to reflect the new location and import convention

opencamlib_version rename:
- in 2 files there was a local variable named 'opencamlib_version' that was defined by a function called 'opencamlib_version' that returned the opencamlib_version
- this seemed to confuse Blender into thinking that it was being called before it was defined, and simply changing the variable name to 'ocl_version' while keeping the function name as 'opencamlib_version' fixed the issue
2024-03-22 17:54:04 -04:00
SpectralVectors c0febee968
Import Fix, funcs moved, refs updated, ocl rename
Changed all imports from absolute to relative: 
- instead of importing the module 'cam' now imports come from '.' the relative parent folder
- importing the module into itself resulted in a circular import error, relative imports avoid this

Moved Functions, refs updated:
- some functions  (and 2 variables) only existed on the base level of the module, in the init file, and could not otherwise be accessed, they were moved into the utils file with other similar functions
- these were primarily called as update functions for Properties scattered across the addon, these have all been updated to reflect the new location and import convention

opencamlib_version rename:
- in 2 files there was a local variable named 'opencamlib_version' that was defined by a function called 'opencamlib_version' that returned the opencamlib_version
- this seemed to confuse Blender into thinking that it was being called before it was defined, and simply changing the variable name to 'ocl_version' while keeping the function name as 'opencamlib_version' fixed the issue
2024-03-22 17:52:18 -04:00
Release robot d9524cf655 Version number 2024-03-22 12:28:37 +00:00
Release robot fcc9239594 Version number 2024-03-22 12:28:19 +00:00
Alain Pelletier 32d6d542e9
Merge pull request #143 from SpectralVectors/property-format
Property format
2024-03-22 09:22:31 -03:00
SpectralVectors 4fea2d25fb
Property format, version update
Changed the formatting of Properties (e.g. bpy.props.StringProperty) throughout:

Before:
```
use_position_definitions: bpy.props.BoolProperty(name="Use position definitions",
                                                     description="Define own positions for op start, "
                                                                 "toolchange, ending position",
                                                     default=False)
```

After:
```
use_position_definitions: BoolProperty(
        name="Use position definitions",
        description="Define own positions for op start, "
        "toolchange, ending position",
        default=False,
)
```

Added trailing commas to retain formatting if another autoformatter (e.g.: black) is implemented.
Removed bpy.props. prefix from Properties that still had it, and added explicit imports when required in ui_panels module.
2024-03-21 14:56:15 -04:00
SpectralVectors 50682fb8c0
Property format, version update
Changed the formatting of Properties (e.g. bpy.props.StringProperty) throughout:

Before:
```
use_position_definitions: bpy.props.BoolProperty(name="Use position definitions",
                                                     description="Define own positions for op start, "
                                                                 "toolchange, ending position",
                                                     default=False)
```

After:
```
use_position_definitions: BoolProperty(
        name="Use position definitions",
        description="Define own positions for op start, "
        "toolchange, ending position",
        default=False,
)
```

Added trailing commas to retain formatting if another autoformatter (e.g.: black) is implemented.
Removed bpy.props. prefix from Properties that still had it, and added explicit imports when required in ui_panels module.
2024-03-21 14:55:03 -04:00
SpectralVectors 2c1e4e962f
Property format, version update
Changed the formatting of Properties (e.g. bpy.props.StringProperty) throughout:

Before:
```
use_position_definitions: bpy.props.BoolProperty(name="Use position definitions",
                                                     description="Define own positions for op start, "
                                                                 "toolchange, ending position",
                                                     default=False)
```

After:
```
use_position_definitions: BoolProperty(
        name="Use position definitions",
        description="Define own positions for op start, "
        "toolchange, ending position",
        default=False,
)
```

Added trailing commas to retain formatting if another autoformatter (e.g.: black) is implemented.
Removed bpy.props. prefix from Properties that still had it, and added explicit imports when required in ui_panels module.
2024-03-21 14:53:43 -04:00
Alain Pelletier 0ad061ade9
Merge pull request #142 from SpectralVectors/autopep8
Autopep8
2024-03-21 11:23:04 -03:00
SpectralVectors 9e9cd3438f
Autopep8 format, author & version update
Ran Autopep8 on all files in repo, they are otherwise untouched with one exception:
In the __init__ file, I had to manually rearrange the import statements to avoid triggering a circular import error.
This will be addressed in a future commit.

Updated authors in bl_info to: 'Vilem Novak & Contributors' - this can be changed as required
Updated version to: 1.0.5
2024-03-21 08:36:34 -04:00
SpectralVectors 343d0642e1
Autopep8 format, author & version update
Ran Autopep8 on all files in repo, they are otherwise untouched with one exception:
In the __init__ file, I had to manually rearrange the import statements to avoid triggering a circular import error.
This will be addressed in a future commit.

Updated authors in bl_info to: 'Vilem Novak & Contributors' - this can be changed as required
Updated version to: 1.0.5
2024-03-21 08:33:03 -04:00
SpectralVectors 3a6b217abc
Autopep8 format, author & version update
Ran Autopep8 on all files in repo, they are otherwise untouched with one exception:
In the __init__ file, I had to manually rearrange the import statements to avoid triggering a circular import error.
This will be addressed in a future commit.

Updated authors in bl_info to: 'Vilem Novak & Contributors' - this can be changed as required
Updated version to: 1.0.5
2024-03-21 08:29:30 -04:00
Release robot 11259ca035 Version number 2024-03-19 17:58:12 +00:00
Alain Pelletier 372d82201d
Merge pull request #258 from pppalain/master
Mid March update
2024-03-19 13:27:40 -03:00
Alain Pelletier d0e75bf381
Update README.md 2024-03-19 13:22:26 -03:00
Release robot d0920d7c3d Version number 2024-03-07 18:53:11 +00:00
Alain Pelletier 0b4927965a
Merge pull request #141 from abosafia/master
meander back to work
2024-03-07 14:51:25 -04:00
abosafia 4e5aa00159 fix collissoin 2024-03-07 20:44:39 +02:00
abosafia 5dd3183cf8 meander back to work 2024-03-07 19:25:37 +02:00
Alain Pelletier a8d87938d2
Merge pull request #140 from joemarshall/fix_ocl_resample
fixes to opencamlib resampling for numpy
2024-02-22 10:34:52 -04:00
Joe Marshall ad7b0267ce fixes to opencamlib resampling for numpy 2024-02-22 11:29:23 +00:00
Release robot 8c858a786b Version number 2024-02-06 14:58:31 +00:00
Alain Pelletier c347ed7d20
Merge pull request #139 from joemarshall/medial_fixes
Medial fixes
2024-02-06 10:55:17 -04:00
Joe Marshall e1303c5c59
Merge branch 'pppalain:master' into medial_fixes 2024-02-06 11:20:49 +00:00
Joe Marshall 5619be07dd fixed silhouette getting 2024-02-06 11:19:45 +00:00
Joe Marshall cdefe77546 medial fixes and tests 2024-02-05 21:12:20 +00:00
Joe Marshall e8a9dc815f test data for 4 axis 2024-02-05 12:31:02 +00:00
Joe Marshall a5551e8a44 fixes for 4 axis 2024-02-05 12:30:43 +00:00
Release robot 8dd6de6cf5 Version number 2024-02-02 20:21:13 +00:00
Alain Pelletier 32dab9ac17
Merge pull request #137 from joemarshall/shapely_2
Performance improvements (shapely 2 API)
2024-02-02 16:19:42 -04:00
Joe Marshall 2f21a3d423 move profiler option into cam module 2024-02-01 12:13:04 +00:00
Joe Marshall 69e12c8c9b fixes to z buffer getting 2024-02-01 12:05:28 +00:00