X-Git-Url: https://git.jsancho.org/?p=guile-irrlicht.git;a=blobdiff_plain;f=src%2Fvertex3d.cpp;h=b7b57e2c70ef52bdf2a360566861117150ab36c2;hp=2bc305c524f5624146bd3e92d6d15cc759b50c87;hb=1a76862e831371dd0a7eb74b460c93b5932165c1;hpb=c59d2be798005a3684d75c3f561568ad2cdac9c7 diff --git a/src/vertex3d.cpp b/src/vertex3d.cpp index 2bc305c..b7b57e2 100644 --- a/src/vertex3d.cpp +++ b/src/vertex3d.cpp @@ -31,10 +31,10 @@ using namespace irr; SCM -video_S3DVertex_make (SCM position, - SCM normal, - SCM color, - SCM tcoords) +S3DVertex_make (SCM position, + SCM normal, + SCM color, + SCM tcoords) { video::S3DVertex* vertex = new video::S3DVertex (scm_to_vector3df (position), @@ -45,7 +45,7 @@ video_S3DVertex_make (SCM position, } SCM -video_S3DVertex_Pos (SCM vertex) { +S3DVertex_Pos (SCM vertex) { video::S3DVertex* s3dvertex = (video::S3DVertex*) scm_to_irr_pointer (vertex); return scm_from_vector3df (s3dvertex->Pos); } @@ -53,8 +53,8 @@ video_S3DVertex_Pos (SCM vertex) { void init_vertex3d (void) { - DEFINE_GSUBR ("video_S3DVertex_make", 4, 0, 0, video_S3DVertex_make); - DEFINE_GSUBR ("video_S3DVertex_Pos", 1, 0, 0, video_S3DVertex_Pos); + DEFINE_GSUBR ("S3DVertex_make", 4, 0, 0, S3DVertex_make); + DEFINE_GSUBR ("S3DVertex_Pos", 1, 0, 0, S3DVertex_Pos); } video::E_VERTEX_TYPE