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 (Collapse)Author
2014-09-27Comments: clarify BMLoopCampbell Barton
2014-09-26Fix ocmpilation error with strict flags after the recent commitSergey Sharybin
2014-09-26BMesh: select similar regionsCampbell Barton
Select operator that takes multiple selected face regions and selects any number of matching regions (when they have distinguishing features to isolate them). UI access next.
2014-09-25BMesh: type-check iterator data argumentCampbell Barton
2014-09-24Custom Data API: redundant pointer-to-pointer argCampbell Barton
2014-09-24BMesh: slight speedup loop-of-verts iteratorCampbell Barton
2014-09-24BMesh: generic callbacks for mempool iteratorCampbell Barton
2014-09-24Cleanup: boolCampbell Barton
2014-09-18Fix for edge-order flipping on subdividing wireCampbell Barton
Extruding a subdivided edge would create flipped faces.
2014-09-12Cleanup & remove redundant checkCampbell Barton
2014-09-11Workaround for strict flags and release build compilationSergey Sharybin
@campbellbarton, it's really helpful to have strict flags enabled for release builds as well -- especially when you're working in areas which are heavily using least squares solvers. For now made it so blender compiles, but it could be better solution here.
2014-09-11Fix non-deterministic editmesh normal orientationsCampbell Barton
- selecting a boundary edge would randomly point in/outside the face (now point away). - selecting 3 verts would use the first selected edge as the tangent (now use longest). - selecting 1 vert betweem edges, uses the edges to define the tangent.
2014-09-10Fix for mesh-inset modifying hidden facesCampbell Barton
2014-09-09Fix T41445: Inset creates separated UV'sCampbell Barton
2014-09-02Fix editmesh-connect with adjacent vert selectionCampbell Barton
The result of running connect wasn't deterministic when adjacent vertices selected.
2014-09-02Fix editmesh-connect with hidden geometryCampbell Barton
- ignore hidden faces & verts - when cutting a pair, select edges co-linear to the cut. Also support creating a buffer from hidden elem's even if BMO_FLAG_RESPECT_HIDE is enabled. (if the hflag used includes BM_ELEM_HIDDEN).
2014-09-02BMesh: report errors for invalid operator useCampbell Barton
- invalid htype's into a slot - duplicate htype's args to BMO_op_vinitf
2014-08-29Fix T41631: Connect acts on unrelated vertCampbell Barton
2014-08-26CommentsCampbell Barton
2014-08-26Fix T41568: Dissolve & Tear Boundary Keeps VertsCampbell Barton
2014-08-25Fix T40993: Store selection history for extrudeCampbell Barton
2014-08-25BMesh: New operator flag not to clear historyCampbell Barton
2014-08-22Cleanup: BMesh arg nameCampbell Barton
2014-08-21Fix T41523: Mesh triangle fill creates flipped facesCampbell Barton
Calculate projection normal using edge-pairs
2014-08-21Fix for BMesh fill using arbitrary face-flippingCampbell Barton
Use winding of existing boundary edges. Filling Suzzane's eyes gave different face winding.
2014-08-21BMesh: fill - replace SmallHash with GHashCampbell Barton
2014-08-21BMesh: add assert for correct args to creation functionsCampbell Barton
2014-08-21BMesh: correct flag useCampbell Barton
Allowed fill to make duplicate faces
2014-08-21Fix T41517: BMesh intersect crashCampbell Barton
2014-08-21CleanupCampbell Barton
2014-08-20Correct mistake in recently added intersect toolCampbell Barton
Sorting verts along an edge wasn't working reliably.
2014-08-20BMesh: improve docs for BM_edge_splitCampbell Barton
2014-08-19Fix for fix (don't guess enum's sign)Campbell Barton
2014-08-18Fix building on some compilers (clang on OSX).Bastien Montagne
Reported and patch by jensverwiebe (jens verwiebe).
2014-08-18BMesh: intersect toolCampbell Barton
Modeling tool to cut intersections into geometry (like boolean, without calculating inside/outside). Faces are split along intersections, leaving new edges selected. Access from Face menu.
2014-08-18Cleanup: assert / warnCampbell Barton
2014-08-18BMesh: add BM_vert_splice_check_doubleCampbell Barton
checks if splicing verts creates duplicate edges
2014-08-17CleanupCampbell Barton
2014-08-14BMesh: use a smaller dist3 thresholdCampbell Barton
Matches array modifier remove-doubles
2014-08-13Math Lib: rename barycentric_transform -> transform_point_by_tri_v3Campbell Barton
also add transform_point_by_seg_v3
2014-08-13SpellingCampbell Barton
2014-08-12Cleanup: magic numbersCampbell Barton
2014-08-07Fix T40948: Fill holes fails in certain caseCampbell Barton
2014-08-07BMesh: use existing lookup tables when remappingCampbell Barton
2014-08-02BMesh: typecheck iteratorCampbell Barton
2014-08-01Prevent macros hiding casts from `const` pointersCampbell Barton
2014-07-30BLI_listbase: consistent name prefixCampbell Barton
2014-07-30GHash: generic comparison for int[4]Campbell Barton
2014-07-24Correction to recent rip-tearCampbell Barton
2014-07-24Fix T41149: Dissolve Crash Due to AutoSmooth.Bastien Montagne
bmesh's 'Join Edge Kill Vert' was using own code to delete loops, instead of using `bm_kill_only_loop()`, which did not tag loop indices as dirty (causing the crash), but also did not free loop's CDData...