aboutsummaryrefslogtreecommitdiff
path: root/msd2D
diff options
context:
space:
mode:
authorN.N. <nimon@users.sourceforge.net>2005-04-28 16:03:57 +0000
committerN.N. <nimon@users.sourceforge.net>2005-04-28 16:03:57 +0000
commit4447f41d8a048bb3a386982e7d3b9f61231b4a93 (patch)
tree3384be9d08b845f379430173fb9b831f0ca9ad83 /msd2D
parentebbeac04a2f1f57cac1bfd87b6da0f58c033e9a8 (diff)
MSD Version 0.05
svn path=/trunk/externals/nusmuk/; revision=2847
Diffstat (limited to 'msd2D')
-rwxr-xr-xmsd2D/main.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/msd2D/main.cpp b/msd2D/main.cpp
index 436703b..d911a14 100755
--- a/msd2D/main.cpp
+++ b/msd2D/main.cpp
@@ -299,15 +299,16 @@ protected:
{
if (GetInt(argv[0]) == (*mi)->nbr) {
(*mi)->posX = GetFloat(argv[1]);
+ (*mi)->posX2 = GetFloat(argv[1]);
break;
}
}
else
for (i=0, mi=mass; i<nb_mass; mi++, i++)
- {
- if (sym == (*mi)->Id)
+ if (sym == (*mi)->Id) {
(*mi)->posX = GetFloat(argv[1]);
- }
+ (*mi)->posX2 = GetFloat(argv[1]);
+ }
}
void m_posY(int argc,t_atom *argv)
@@ -326,15 +327,16 @@ protected:
{
if (GetInt(argv[0]) == (*mi)->nbr) {
(*mi)->posY = GetFloat(argv[1]);
+ (*mi)->posY2 = GetFloat(argv[1]);
break;
}
}
else
for (i=0, mi=mass; i<nb_mass; mi++, i++)
- {
- if (sym == (*mi)->Id)
+ if (sym == (*mi)->Id) {
(*mi)->posY = GetFloat(argv[1]);
- }
+ (*mi)->posY2 = GetFloat(argv[1]);
+ }
}
void m_set_mobile(int argc,t_atom *argv)