sorry more ;'s this should be the last of them though.

Kent
This commit is contained in:
Kent Mein 2004-02-23 19:14:38 +00:00
parent a0e9208c35
commit 6379637089
4 changed files with 14 additions and 13 deletions

@ -99,7 +99,7 @@ VertexIt_Destruct(
iterator->Step = NULL; iterator->Step = NULL;
iterator->num_elements = 0; iterator->num_elements = 0;
}; }
static static
int int
@ -203,7 +203,7 @@ FaceIt_Destruct(
iterator->Reset = NULL; iterator->Reset = NULL;
iterator->Step = NULL; iterator->Step = NULL;
iterator->num_elements = 0; iterator->num_elements = 0;
}; }
static static
@ -214,7 +214,7 @@ FaceIt_Done(
// assume CSG_IteratorPtr is of the correct type. // assume CSG_IteratorPtr is of the correct type.
FaceIt * iterator = (FaceIt *)it; FaceIt * iterator = (FaceIt *)it;
return(iterator->pos >= iterator->mesh->totface); return(iterator->pos >= iterator->mesh->totface);
}; }
static static
void void
@ -269,7 +269,7 @@ FaceIt_Fill(
fvdata->color[3] = (float) ((tface->col[i] >> 0) & 0xff); fvdata->color[3] = (float) ((tface->col[i] >> 0) & 0xff);
} }
} }
}; }
static static
@ -279,7 +279,7 @@ FaceIt_Step(
) { ) {
FaceIt * face_it = (FaceIt *)it; FaceIt * face_it = (FaceIt *)it;
face_it->pos ++; face_it->pos ++;
}; }
static static
void void
@ -317,7 +317,7 @@ FaceIt_Construct(
output->Reset = FaceIt_Reset; output->Reset = FaceIt_Reset;
output->num_elements = it->mesh->totface; output->num_elements = it->mesh->totface;
output->it = it; output->it = it;
}; }
/** /**
@ -604,7 +604,7 @@ AddNewBlenderMesh(
ob_new->type= OB_MESH; ob_new->type= OB_MESH;
return ob_new; return ob_new;
}; }
/** /**
* *

@ -75,7 +75,7 @@ CSG_DestroyBlenderMeshInternals(
) { ) {
// Free face and vertex iterators. // Free face and vertex iterators.
FreeMeshDescriptors(&(mesh->m_face_iterator),&(mesh->m_vertex_iterator)); FreeMeshDescriptors(&(mesh->m_face_iterator),&(mesh->m_vertex_iterator));
}; }
static static
@ -261,7 +261,7 @@ CSG_PerformOp(
output->m_destroy_func = CSG_DestroyCSGMeshInternals; output->m_destroy_func = CSG_DestroyCSGMeshInternals;
return 1; return 1;
}; }
int int
NewBooleanMeshTest( NewBooleanMeshTest(
@ -303,4 +303,5 @@ NewBooleanMeshTest(
CSG_DestroyMeshDescriptor(&output3); CSG_DestroyMeshDescriptor(&output3);
return 1; return 1;
}; }

@ -592,7 +592,7 @@ void init_nlaspace(ScrArea *sa)
snla->v2d.keeptot= 0; snla->v2d.keeptot= 0;
snla->lock = 0; snla->lock = 0;
}; }
void deselect_nlachannel_keys (int test) void deselect_nlachannel_keys (int test)
{ {

@ -755,7 +755,7 @@ void wpaint_undo (void){
makeDispList(OBACT); makeDispList(OBACT);
scrarea_do_windraw(curarea); scrarea_do_windraw(curarea);
}; }
void copy_wpaint_undo (MDeformVert *dverts, int dcount){ void copy_wpaint_undo (MDeformVert *dverts, int dcount){
if (wpaintundobuf) if (wpaintundobuf)
@ -764,7 +764,7 @@ void copy_wpaint_undo (MDeformVert *dverts, int dcount){
wpaintundobuf = MEM_mallocN (sizeof(MDeformVert)*dcount, "wpaintundo"); wpaintundobuf = MEM_mallocN (sizeof(MDeformVert)*dcount, "wpaintundo");
totwpaintundo = dcount; totwpaintundo = dcount;
copy_dverts (wpaintundobuf, dverts, dcount); copy_dverts (wpaintundobuf, dverts, dcount);
}; }
void weight_paint(void) void weight_paint(void)
{ {