Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2011-11-29macro for defining a fixed size array which may be heap or stack allocated, r...Campbell Barton
2011-11-29Rename DM *_face_* funcs to be either *_tessface_* or *_poly_* to avoid confu...Andrew Wiggin
2011-11-29- add BM_NGON_STACK_SIZE define to use wherever ngon stack arrays are used.Campbell Barton
2011-11-29inline BMIter_Step() and BMIter_New() since the compiler can optimize out the...Campbell Barton
2011-11-28gpl header cleanup, some files didnt have a gpl header.Campbell Barton
2011-11-28trust 'bm->elem_index_dirty' is correct, this avoids looping over edges/faces...Campbell Barton
2011-11-28validate the index values when an operator finishes since the arrays are loop...Campbell Barton
2011-11-28fix for error filling in index dataCampbell Barton
2011-11-28svn merge ^/trunk/blender -r42197:42221Campbell Barton
2011-11-28fix for missing NULL check in remove doubles.Campbell Barton
2011-11-28more work on getting bmesh dirty index flags reliable.Campbell Barton
2011-11-28minor changesCampbell Barton
2011-11-28fix for minor memory leak for BMO_VInitOpf() in an error case, also use the B...Campbell Barton
2011-11-28use lower angle when checking to draw an edge, adding uv sphere looked strangeCampbell Barton
2011-11-28when comparing lengths no need to sqrtCampbell Barton
2011-11-282 of the 3 places that check 2 edges share a vertex were incorrect (silly mis...Campbell Barton
2011-11-27use faster method of getting vert/edge/face indices which uses BLI_mempool_fi...Campbell Barton
2011-11-25fix [#29079] New face added with "F" has wrong windingCampbell Barton
2011-11-25remove redundant array copy (was being done twice), for BM_Face_UpdateNormalCampbell Barton
2011-11-25replace unhelpfully named `eck!` and `eek!` error prints, also some minor cha...Campbell Barton
2011-11-24Adjust BMO_Get/SetIndex syntax so that it can take element pointers directlyAndrew Wiggin
2011-11-24fix [#28676] Tris to Quads: "Max Angle" is not interpreted correctlyCampbell Barton
2011-11-24move edge angle test from previous commit into a static function & set on the...Campbell Barton
2011-11-24fix [#29313] In object mode wire frame edges between two planar faces renderCampbell Barton
2011-11-24fix [#29177] Select linked in face select mode doesn't stop on seamsCampbell Barton
2011-11-24per type restrict masks for walkersCampbell Barton
2011-11-24small changes to iterator, preparing for bigger changes.Campbell Barton
2011-11-24fix for [#29365] Sharp Edges get lost after edit mode toggleCampbell Barton
2011-11-23fix for build errors Campbell Barton
2011-11-22Fix broken edge ripAndrew Wiggin
2011-11-20Various typo cleanups, remove unnecessary code etc, found during recent work ...Andrew Wiggin
2011-11-18speedup for editmesh tesselation (approx 4.4x speedup in optimized builds),Campbell Barton
2011-11-18fix [#28676] Tris to Quads: "Max Angle" is not interpreted correctlyCampbell Barton
2011-11-16svn merge -r41926:41932 ^/trunk/blenderCampbell Barton
2011-11-16svn merge -r41899:41926 ^/trunk/blender. also sync mempool with trunk and mov...Campbell Barton
2011-11-16replace macros with math functionsCampbell Barton
2011-11-16quiet compiler warnings for BLI_array defines, split BLI_array_append into BL...Campbell Barton
2011-11-16tag index arrays as dirty when any element is removed, also check validity on...Campbell Barton
2011-11-16BM_Compute_Normals was setting invalid edge index values when it didn't need to.Campbell Barton
2011-11-16ensure dirty flags / index arrays are in a valid state before & after executi...Campbell Barton
2011-11-16fix for error in last commit, also make BM_ElemIndex_Validate() check dirty f...Campbell Barton
2011-11-16prepare for flagging the bmesh has having invalid index values, so we can ski...Campbell Barton
2011-11-16set the index on newly added vert/edge/facesCampbell Barton
2011-11-13Add CD_POLYINDEX layer to reduce need for retesselationsAndrew Wiggin
2011-11-08bmesh: fixed merge issues with navmesh (though I've not tested if it works yet).Joseph Eagar
2011-11-07don't write into bmesh edge indices when calculating solidify normals Campbell Barton
2011-11-07replace bmesh specific macros with math functions, also some pedantic formatt...Campbell Barton
2011-11-03Fix MSVC build (warning-to-error for mismatch of "const" keyword between func...Andrew Wiggin
2011-11-01use char for BMHeader type and flag (saves 2 bytes per edge/loop/vertex/face)Campbell Barton
2011-11-01replace as many uses of BM_Get/SetIndex as possible with tagging with a temp ...Campbell Barton