I've no idea why CVS thinks that the .mcp files have been changed - they haven't.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12589
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#endif
#include "wx/image.h"
#endif
#include "wx/image.h"
#include "wx/html/htmlwin.h"
#include "wx/html/htmlproc.h"
#include "wx/fs_inet.h"
#include "wx/html/htmlwin.h"
#include "wx/html/htmlproc.h"
#include "wx/fs_inet.h"
bool MyApp::OnInit()
{
wxLog::AddTraceMask(wxT("strconv"));
bool MyApp::OnInit()
{
wxLog::AddTraceMask(wxT("strconv"));
+ wxSystemOptions::SetOption(wxT("no-maskblt"), 1);
+
wxInitAllImageHandlers();
#if wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
wxFileSystem::AddHandler(new wxInternetFSHandler);
wxInitAllImageHandlers();
#if wxUSE_FS_INET && wxUSE_STREAMS && wxUSE_SOCKETS
wxFileSystem::AddHandler(new wxInternetFSHandler);
nbytes -= read_string(f,material->name);
/* defaults */
nbytes -= read_string(f,material->name);
/* defaults */
- material->r = 0.7;
- material->g = 0.7;
- material->b = 0.7;
+ material->r = 0.7f;
+ material->g = 0.7f;
+ material->b = 0.7f;
}
lwo->material = (lwMaterial*) realloc(lwo->material, sizeof(lwMaterial)*lwo->material_cnt);
}
}
lwo->material = (lwMaterial*) realloc(lwo->material, sizeof(lwMaterial)*lwo->material_cnt);
}
* simple example, though, so that is left as an Exercise for the
* Programmer.
*/
* simple example, though, so that is left as an Exercise for the
* Programmer.
*/
-#define TRACKBALLSIZE (0.8)
+#define TRACKBALLSIZE (0.8f)
/*
* Local function prototypes (not defined in trackball.h)
/*
* Local function prototypes (not defined in trackball.h)
float
vlength(const float *v)
{
float
vlength(const float *v)
{
- return sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]);
+ return (float) sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]);
- vscale(v,1.0/vlength(v));
+ vscale(v, 1.0f/vlength(v));
* First, figure out z-coordinates for projection of P1 and P2 to
* deformed sphere
*/
* First, figure out z-coordinates for projection of P1 and P2 to
* deformed sphere
*/
- vset(p1,p1x,p1y,tb_project_to_sphere(TRACKBALLSIZE,p1x,p1y));
- vset(p2,p2x,p2y,tb_project_to_sphere(TRACKBALLSIZE,p2x,p2y));
+ vset(p1, p1x, p1y, tb_project_to_sphere(TRACKBALLSIZE, p1x, p1y));
+ vset(p2, p2x, p2y, tb_project_to_sphere(TRACKBALLSIZE, p2x, p2y));
/*
* Now, we want the cross product of P1 and P2
/*
* Now, we want the cross product of P1 and P2
/*
* Figure out how much to rotate around that axis.
*/
/*
* Figure out how much to rotate around that axis.
*/
- vsub(p1,p2,d);
- t = vlength(d) / (2.0*TRACKBALLSIZE);
+ vsub(p1, p2, d);
+ t = vlength(d) / (2.0f*TRACKBALLSIZE);
/*
* Avoid problems with out-of-control values...
*/
if (t > 1.0) t = 1.0;
if (t < -1.0) t = -1.0;
/*
* Avoid problems with out-of-control values...
*/
if (t > 1.0) t = 1.0;
if (t < -1.0) t = -1.0;
+ phi = 2.0f * (float) asin(t);
axis_to_quat(float a[3], float phi, float q[4])
{
vnormal(a);
axis_to_quat(float a[3], float phi, float q[4])
{
vnormal(a);
- vcopy(a,q);
- vscale(q,sin(phi/2.0));
- q[3] = cos(phi/2.0);
+ vcopy(a, q);
+ vscale(q, (float) sin(phi/2.0));
+ q[3] = (float) cos(phi/2.0);
+ d = (float) sqrt(x*x + y*y);
if (d < r * 0.70710678118654752440) { /* Inside sphere */
if (d < r * 0.70710678118654752440) { /* Inside sphere */
+ z = (float) sqrt(r*r - d*d);
} else { /* On hyperbola */
} else { /* On hyperbola */
- t = r / 1.41421356237309504880;
+ t = r / 1.41421356237309504880f;
void
build_rotmatrix(float m[4][4], float q[4])
{
void
build_rotmatrix(float m[4][4], float q[4])
{
- m[0][0] = 1.0 - 2.0 * (q[1] * q[1] + q[2] * q[2]);
- m[0][1] = 2.0 * (q[0] * q[1] - q[2] * q[3]);
- m[0][2] = 2.0 * (q[2] * q[0] + q[1] * q[3]);
- m[0][3] = 0.0;
-
- m[1][0] = 2.0 * (q[0] * q[1] + q[2] * q[3]);
- m[1][1]= 1.0 - 2.0 * (q[2] * q[2] + q[0] * q[0]);
- m[1][2] = 2.0 * (q[1] * q[2] - q[0] * q[3]);
- m[1][3] = 0.0;
-
- m[2][0] = 2.0 * (q[2] * q[0] - q[1] * q[3]);
- m[2][1] = 2.0 * (q[1] * q[2] + q[0] * q[3]);
- m[2][2] = 1.0 - 2.0 * (q[1] * q[1] + q[0] * q[0]);
- m[2][3] = 0.0;
-
- m[3][0] = 0.0;
- m[3][1] = 0.0;
- m[3][2] = 0.0;
- m[3][3] = 1.0;
+ m[0][0] = 1.0f - 2.0f * (q[1] * q[1] + q[2] * q[2]);
+ m[0][1] = 2.0f * (q[0] * q[1] - q[2] * q[3]);
+ m[0][2] = 2.0f * (q[2] * q[0] + q[1] * q[3]);
+ m[0][3] = 0.0f;
+
+ m[1][0] = 2.0f * (q[0] * q[1] + q[2] * q[3]);
+ m[1][1]= 1.0f - 2.0f * (q[2] * q[2] + q[0] * q[0]);
+ m[1][2] = 2.0f * (q[1] * q[2] - q[0] * q[3]);
+ m[1][3] = 0.0f;
+
+ m[2][0] = 2.0f * (q[2] * q[0] - q[1] * q[3]);
+ m[2][1] = 2.0f * (q[1] * q[2] + q[0] * q[3]);
+ m[2][2] = 1.0f - 2.0f * (q[1] * q[1] + q[0] * q[0]);
+ m[2][3] = 0.0f;
+
+ m[3][0] = 0.0f;
+ m[3][1] = 0.0f;
+ m[3][2] = 0.0f;
+ m[3][3] = 1.0f;
#include "wx/wx.h"
#endif
#include "wx/wx.h"
#endif
+
+#if !wxUSE_PROPSHEET
+#error Please set wxUSE_PROPSHEET to 1 in include/wx/msw/setup.h and recompile.
+#endif
+
#include "proplist.h"
IMPLEMENT_APP(MyApp)
#include "proplist.h"
IMPLEMENT_APP(MyApp)