Search the web
Sign In
New User? Sign Up
dancedev · DANCE software development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 135 - 165 of 248   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
135
Hi I download dance_v3 2005, when I am building it, the following error exists numerous times. 3>c:\dance_v3\core\src\defs.h(45) : fatal error C1083: Cannot...
forestluozq
Offline Send Email
Dec 5, 2008
9:52 am
136
Did you set your DANCE_DIR environment variable like: c:/dance_v3 (using forward slashes) before you opened Visual Studio? Ari Shapiro...
shapiroari
Online Now Send Email
Dec 5, 2008
10:09 pm
137
Hi Ari I have set DANCE_DIR in winXP, in control panel>system>advance>environmental variable, add DANCE_DIR c:/dance_v3 But I still meet the same error. Do I...
forestluozq
Offline Send Email
Dec 6, 2008
3:04 am
138
I was able to elicit the same error as you report when my DANCE_DIR variable is not set to the dance_v3 directory properly. Where is the path to DANCE that you...
shapiroari
Online Now Send Email
Dec 6, 2008
7:11 pm
139
Hi Ari I extract DAnce to the folder c:/dance_v3, that means the dance_v3.sln lies in this folder (c:/dance_v3). I then add the DANCE_DIR in windoww XP as...
forestluozq
Offline Send Email
Dec 7, 2008
6:51 am
140
Try this: Right click on the dance_v3 project, the choose Properties. Under Configuration Properties / C/C++ / Command Line, send me the contexts of the text...
Ari Shapiro
shapiroari
Online Now Send Email
Dec 7, 2008
8:06 pm
141
Hi The context in Command Line is following: /Od /Ob1 /I "c:/dance_v3/libinclude" /I "c:/dance_v3/core/math" /I "c:/dance_v3/extensions/fltk-2.0.x-r4773" /I...
forestluozq
Offline Send Email
Dec 8, 2008
2:38 am
142
There's an extra space between the DANCE_DIR variable (notice on the first line after the /I) which is preventing Visual Studio from finding the right path. ...
Ari Shapiro
shapiroari
Online Now Send Email
Dec 8, 2008
3:06 am
143
Hi Ari It is the point you point out, although this can not be found in the Additional Include Directories. I just rewrite the $(DANCE_DIR)/core/math in the...
forestluozq
Offline Send Email
Dec 8, 2008
5:11 am
144
All, I have posted a new version of DANCE with updated code at: http://www.magix.ucla.edu/dance/#download The new version is: dance_v4_012109.zip This version...
shapiroari
Online Now Send Email
Jan 21, 2009
10:45 pm
145
Hi, I try to compile with VS2005 and I get the following errors when I compile fltk library. I honestly cannot figure them out. All Include files are correctly...
dmarisol_03
Offline Send Email
Jan 22, 2009
7:14 pm
146
What specific version of Visual Studio 2005 are you using (Help -> About Visual Studio)? Ari...
shapiroari
Online Now Send Email
Jan 23, 2009
12:34 am
148
Hi, Ari. Thanks for v4 update. BTW, do you have any plan to support VS2005 as V3 version did? Yejin...
yejink76
Offline Send Email
Jan 23, 2009
12:52 am
149
The v4 codebase is compatible with the v3 codebase. There's a vs2005 project build file in the dance_v4/build directory. Is this what you mean? I use vs2005 to...
Ari Shapiro
shapiroari
Online Now Send Email
Jan 23, 2009
12:54 am
150
Oh, thanks. I was looking for that project file....
yejink76
Offline Send Email
Jan 23, 2009
1:05 am
151
Hi, Ari. I have noticed following issues during the compiling V4 on VS2005. 1. Unlike V3 version, the projects in V4 version don't use FLTK_DIR anymore. Should...
yejink76
Offline Send Email
Jan 23, 2009
2:03 am
152
... The FLTK_DIR is not needed anymore. I included the FLTK diretories in the solution's include and lib directories. ... Ok, that needs to be fixed. You can...
Ari Shapiro
shapiroari
Online Now Send Email
Jan 23, 2009
2:31 am
153
I just posted a new version of the DANCE binary for Windows with an installer. The file is: dance_v4_binary_012209.exe http://www.magix.ucla.edu/dance/ This...
shapiroari
Online Now Send Email
Jan 23, 2009
7:13 am
154
Hi, The version is Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 SP1 Installed Edition: VC...
dmarisol_03
Offline Send Email
Jan 23, 2009
1:56 pm
155
I have tested my build on Visual Studio 2005, not the VC Express versions, although I'm not sure what the difference is. Has anyone else had trouble building...
shapiroari
Online Now Send Email
Jan 23, 2009
5:48 pm
156
Ok, I have places the fully build FLTK dlls and libs for Windows online, which would prevent you from needing to build the FLTK project: Place the following in...
shapiroari
Online Now Send Email
Jan 24, 2009
7:24 pm
157
This is so simple, it doesn't really need a patch. Under Windows the save session command consistently reported failure in creating the directory, despite...
Evan Lloyd
shortytwometers
Offline Send Email
Feb 8, 2009
8:11 am
158
Hi. I am having error on loading textured material such that the program failes to load textures in ./data/materials as follows, int...
yejink76
Offline Send Email
Feb 10, 2009
8:02 pm
159
Which file is it trying to load? Does it fail to load all files, or just that one? Ari ________________________________ From: yejink76 <yejink76@...> ...
Ari Shapiro
shapiroari
Online Now Send Email
Feb 11, 2009
12:09 am
160
All files in ./data/material. Program crashes whenever I choose any textured material from the material manager. ... just that one? ... program ... *fileName,...
yejink76
Offline Send Email
Feb 11, 2009
1:55 am
161
Ok - here's the fix: In src/imageManager.cpp, replace lines 79-80: if (id==-1) { m_tex=this->makeTextureFromFile(tex, filename, false); with: if (id==-1) { ...
shapiroari
Online Now Send Email
Feb 11, 2009
4:15 am
162
It fixes the crash, but I still don't see any texture on objects. I only see same greenish color from all texture files. ... files, or ... ImageMagick-...
yejink76
Offline Send Email
Feb 11, 2009
7:47 pm
163
Interestingly, I see the textures probably when I build DANCE in release mode, but not in debug mode. Do you also find this to be the case? Regards, Ari...
shapiroari
Online Now Send Email
Feb 12, 2009
6:53 am
164
Yes, I am facing the same problem. Is this related to ImageMagick library? ... the case? ... the ... the...
yejink76
Offline Send Email
Feb 13, 2009
10:19 pm
165
Hi I have tried to make the code using the makefile. I'm sure I have all the libraries built and the paths correct in the makefile but I get the following...
nathanael_inkson
nathanael_in...
Online Now Send Email
Feb 14, 2009
1:15 pm
Messages 135 - 165 of 248   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help