Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
c33c2c0b
Commit
c33c2c0b
authored
11 years ago
by
Daniel Monteiro Basso
Browse files
Options
Downloads
Patches
Plain Diff
Fix T37768: marker labels were misidentified
parent
74ff9632
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
io_anim_c3d/__init__.py
+3
-2
3 additions, 2 deletions
io_anim_c3d/__init__.py
io_anim_c3d/import_c3d.py
+11
-2
11 additions, 2 deletions
io_anim_c3d/import_c3d.py
with
14 additions
and
4 deletions
io_anim_c3d/__init__.py
+
3
−
2
View file @
c33c2c0b
...
@@ -25,8 +25,8 @@
...
@@ -25,8 +25,8 @@
bl_info
=
{
bl_info
=
{
"
name
"
:
"
C3D Graphics Lab Motion Capture file (.c3d)
"
,
"
name
"
:
"
C3D Graphics Lab Motion Capture file (.c3d)
"
,
"
author
"
:
"
Daniel Monteiro Basso <daniel@basso.inf.br>
"
,
"
author
"
:
"
Daniel Monteiro Basso <daniel@basso.inf.br>
"
,
"
version
"
:
(
2013
,
2
,
1
6
,
1
),
"
version
"
:
(
2013
,
1
2
,
1
0
,
1
),
"
blender
"
:
(
2
,
6
5
,
9
),
"
blender
"
:
(
2
,
6
9
,
5
),
"
location
"
:
"
File > Import
"
,
"
location
"
:
"
File > Import
"
,
"
description
"
:
"
Imports C3D Graphics Lab Motion Capture files
"
,
"
description
"
:
"
Imports C3D Graphics Lab Motion Capture files
"
,
"
wiki_url
"
:
"
http://wiki.blender.org/index.php/Extensions:2.6/Py/
"
"
wiki_url
"
:
"
http://wiki.blender.org/index.php/Extensions:2.6/Py/
"
...
@@ -95,6 +95,7 @@ class C3DAnimateCloud(bpy.types.Operator):
...
@@ -95,6 +95,7 @@ class C3DAnimateCloud(bpy.types.Operator):
def
cancel
(
self
,
context
):
def
cancel
(
self
,
context
):
bpy
.
context
.
scene
.
frame_set
(
bpy
.
context
.
scene
.
frame_current
)
bpy
.
context
.
scene
.
frame_set
(
bpy
.
context
.
scene
.
frame_current
)
context
.
window_manager
.
event_timer_remove
(
self
.
timer
)
context
.
window_manager
.
event_timer_remove
(
self
.
timer
)
return
{
'
FINISHED
'
}
class
C3DImporter
(
bpy
.
types
.
Operator
):
class
C3DImporter
(
bpy
.
types
.
Operator
):
...
...
This diff is collapsed.
Click to expand it.
io_anim_c3d/import_c3d.py
+
11
−
2
View file @
c33c2c0b
...
@@ -196,14 +196,23 @@ class MarkerSet:
...
@@ -196,14 +196,23 @@ class MarkerSet:
if
not
g
.
name
:
if
not
g
.
name
:
break
break
self
.
paramGroups
[
g
.
name
]
=
g
self
.
paramGroups
[
g
.
name
]
=
g
cand_mlabel
=
None
for
pg
in
self
.
paramGroups
:
for
pg
in
self
.
paramGroups
:
#print("group: " + pg)
#print("group: " + pg)
#for p in self.paramGroups[pg].params:
#for p in self.paramGroups[pg].params:
# print(" * " + p)
# print(" * " + p)
if
'
LABELS
'
in
self
.
paramGroups
[
pg
].
params
:
if
'
LABELS
'
in
self
.
paramGroups
[
pg
].
params
:
break
cand_mlabel
=
self
.
paramGroups
[
pg
].
params
[
'
LABELS
'
].
decode
()
if
len
(
cand_mlabel
)
==
self
.
markerCount
:
break
cand_mlabel
=
None
# pg should be 'POINT', but let's be liberal and accept any group
# pg should be 'POINT', but let's be liberal and accept any group
self
.
markerLabels
=
self
.
paramGroups
[
pg
].
params
[
'
LABELS
'
].
decode
()
# as long as the LABELS parameter has the same number of markers
if
cand_mlabel
is
None
:
self
.
markerLabels
=
[
"
m{}
"
.
format
(
idx
)
for
idx
in
range
(
self
.
markerCount
)]
else
:
self
.
markerLabels
=
cand_mlabel
repeats
=
{}
repeats
=
{}
for
i
,
m
in
enumerate
(
self
.
markerLabels
):
for
i
,
m
in
enumerate
(
self
.
markerLabels
):
if
m
in
repeats
:
if
m
in
repeats
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment