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

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

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

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