Hi, I have been trying to install dance software in Ubuntu 8.10. But after solving all the compiler errors, the make command finally worked. But there is still...
That's a very unusual problem, particularly the log off. Question for you: 1) What changes did you have to make to get the compilation and building to work? 2)...
It had problems about the headers such that it was giving errors for "atoi" and "atof". Maybe the errors are coming from the other packages, I do not clearly...
Sinan, Have you tried running DANCE in debug mode with gdb? Build with 'make debug' instead of 'make', then run 'gdb bin/dance' (from the DANCE_DIR directory)...
Yes, I tried know, and same thing happened again. Maybe it is because of my graphic card but other 3D applications are working at least blender. I do not know...
I've hobbled together a Ubuntu 8.10 box and have been trying to build DANCE on it. Here are some changes that need to be made to the DANCE code to build on...
In another computer I am getting the following error. the processor in this machine is 64bits. How can I solve the problem when compiling. I am beginner in...
You need to rebuild with the -fPIC. Make sure that your $DANCE_DIR/Makefile.inc file has the following lines: CFLAGS=-Wall -fPIC Also, you might need to...
Hi again, Now I am getting the fallowing errors that you can find in the attached file. Thank you very much for your time. ________________________________ ...
Make sure that you have a directory called: $DANCE_DIR/plugins/linux That looks like the problem where the Makefile isn't properly detecting the $OSTYPE (which...
Hi has anyone trid to add a mesh over the skeleton to give a more realistic body? If not then I will attempt to do this at some point. I noticed there is code...
If you look in the commandPlugIn function in DView.cxx you will see all the possible commands. I believe "target" will allow you to change the position of the...
You can also change the camera distance with the "distance" command: dance.view("view_perspective", "distance", 100) if you don't put in the third parameter,...
You'll need to fix a couple lines of code to get the mesh skinning working: In modifiers/LinearSkinning.cxx, line 2771, change from: m_skinWeights.reserve(5 *...
Hey Ari, Thank you so much for taking the time to instruct me. I'll give it a go later this week. Do you know if there an easy way that I can display the...
The Simulator UI tab has a checkbox that will let you display the center of mass of the each body on the skeleton. If you run Tutorial 7, there is a controller...
Hi Ari, As you may remember I am using Dance v3 because Michael Neffs custom plugins only work with DANCE v3 at the moment. Unfortunately DANCE hangs when I...
Hi Tyler, I took a brief look yesterday, and tracked down the problem on Windows, but didn't find a solutions (something to do with corrupt memory). I'm...
Hi I created a simple pendulum in Dance. I need to generate graphs like Displacement Vs Time. So i need the values of the displacement and time. what should i...
Ok, I figured out the problem: The MotionPlayer plugin was not deleting the Characters, and during the Debug execution of DANCE, I dump out all the memory that...
Hi Muniraj, A relatively easy way to accomplish this is to use the controller scripting interface. There are functions in the scripting interface that can read...
I've attached the DumpData.py file in case there is any problem in copy/pasting this file. Ari ________________________________ From: "muniraj_143@..."...
I added that bit to the destructor for MotionPlayer but there a still maaaany undelete objects getting dumped. In CharJoint.cxx I modified the destructor so...
The fastest way to avoid this problem is to change eliminate the debug checking by changing dance_v4/core/src/main.cxx from: #ifdef _DEBUG // Memory leaks...
Hi thanx for the reply and help. I get the following error. Please can u help me to resolve it thanx Muniraj Pose #0 - 'DumpData' added... Pose 'DumpData' has...
It looks like you have the DANCE version 3 code (dance_v3), which doesn't have the python scriptiing interface.The dance_v4 version of the code includes the...
If you rebuild the ImageMagick library with the configure option: --with-quantum-depth=8 you should be able to see the textures properly. So you might do: ...
Hi, Ari. I have rebuilt ImageMagick library (in debug mode as I am running DANCE codes in debug mode) with #define MAGICKCORE_QUANTUM_DEPTH 8 by using...
When you enter the command: identify -list format do you see GIF as a valid format? Does this only happen for .gif files or for others as well? (say, .jpg) ...