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
2015-06-11BLI_listbase: match arg order with BLI_qsort_rCampbell Barton
2015-06-10Fix T45009: Bad 'tri area computation' code in knife tool.Bastien Montagne
Was causing wrong selection of 'outside' face.
2015-04-27Cleanup: use mul_v3_mat3_m4v3Campbell Barton
2015-04-27Fix T44011: Ruler/Knife/Loop-cut fail in quad-viewCampbell Barton
This is a kind of sloppy-focus, resolving long standing bug with loop-cut/knife/ruler /w quad-view. Where activating a tool would lock onto one of quad-views, especially problematic when activating from the toolbar or menus.
2015-04-25CleanupCampbell Barton
2015-04-24Fix T44492: knife tool should cut across a split edge.Howard Trickey
Added filter condition in visibility check that prevented a "butting-up-against" face from obscuring an edge.
2015-03-03Knife: fix glitch dragging mouse outside the faceCampbell Barton
Had a small gap between the last-vertex & new-cut
2015-03-02Fix T43862: Knife fails with concave ngonCampbell Barton
2015-02-27MEM_SAFE_FREE caused issues /w const & GCC5Campbell Barton
2015-02-27Fix T43806: Knife project crashesCampbell Barton
Need to re-create the bmbvh after executing the cut.
2015-01-19Fix two potential bugs reported by latest coverity scan.Bastien Montagne
2015-01-13error in last commitCampbell Barton
2015-01-13Fix T42459: Knife fails at small scaleCampbell Barton
Occluding geometry failed when near overlapping (or cutting small objects).
2015-01-13Fix T43229: Knife-project regression (broke knife-project)Campbell Barton
There have been quite a few issues with knife precision, tested reports (T43229, T42864, T42459, T41164) and this works with all.
2015-01-01cleanup: redundant casts & const cast correctnessCampbell Barton
2014-12-27cleanup: knife tools, use generic sort functionCampbell Barton
2014-12-15Fix T42864: Knife-project fails with 'cut-through'Campbell Barton
Removing edge-hit-doubles could incorrectly de-duplicate intersections between different edges. Gave noticeable errors cutting through geometry that overlapped exactly.
2014-12-15Fix T42864 (partial): knife-project included uncut backfacesCampbell Barton
When knife-project ran with cut-through disabled, it would still try to select faces behind the cut. Now check if the faces are obscured.
2014-12-15Fix T42864 (partial): Knife-project had too-low precisionCampbell Barton
2014-12-09Correct last commit checking knife edgesCampbell Barton
2014-12-09Knife: cuts along existing edges are now selectedCampbell Barton
This means cuts along existing edges don't have gaps in the selection. Fixes T42616
2014-12-09Knife: rename vert & edge 'draw' to 'is_cut'Campbell Barton
More logical for checking if the edge is a cut into the mesh.
2014-12-09Knife: fix edge aligned cuts, could add redundant vertsCampbell Barton
2014-12-09Knife: test if an edge is on the face boundaryCampbell Barton
Was checking if an edges midpoint was inside the face, giving random results (point-inside for an edge location).
2014-12-09Fix T42488: Knife (selected_only + occlude) failedCampbell Barton
2014-11-29Cleanup: use const, avoid float -> double in matrix invertCampbell Barton
2014-11-16Knife: fix recent drag option /w loop closeCampbell Barton
It would miss adding an edge when closing the loop.
2014-11-16Cleanup: use BLI_listbase_count_ex to avoid redundant loopingCampbell Barton
2014-11-16Cleanup: use BLI_listbase_*** prefix for count,sort,sort_rCampbell Barton
2014-11-16Knife: double clicking now closes the loopCampbell Barton
2014-11-16Fix T42611: Knife fails from an edge to a vertexCampbell Barton
2014-11-15Knife: freehand drawing while LMB heldCampbell Barton
2014-10-06Cleanup: avoid alloc for each knife-project vectorCampbell Barton
2014-09-16Fix T41850: Knife fails with mesh behind viewCampbell Barton
Was using first vertex for depth (which could be anywhere), now use the view-pivot. was also copying uninitialized vector into knife_find_closest_* return values (confused debugging).
2014-09-16Fix T41849: Knife fails with small lensCampbell Barton
knife cursor depth could be projected behind the view with a wide angle lens.
2014-09-16Fix T41842: Knife edge-snap, incorrect offsetCampbell Barton
2014-09-06Fix T41730: Knife Cut fails on concave facesCampbell Barton
2014-09-06Knife: remove redundant allocationsCampbell Barton
2014-09-06Knife: no need to find the face-loopsCampbell Barton
Just check if verts are used in the face.
2014-08-17Knife tool: simplify hit-depth calculationCampbell Barton
2014-08-14hint checks to re-alloc as unlikelyCampbell Barton
also edit comments for knife tool
2014-08-13Fix T39387: Knife makes duplicate verts with subsurfCampbell Barton
2014-08-13Math Lib: name signed versions of dist_to_plane_v3 explicitlyCampbell Barton
also add unsigned versions
2014-08-13Knife tool: avoid copying vectorsCampbell Barton
2014-08-13Knife tool: cleanup threshold use, avoid sqrtCampbell Barton
2014-08-13Fix T41164: Knife creates duplicate vertsCampbell Barton
2014-06-16Fix T40646: Knife project fails with clippingCampbell Barton
2014-06-16Fix for knife when in ortho camera viewCampbell Barton
2014-05-20Fix T40252: Knife snapping ignores axis-constraintCampbell Barton
2014-05-13Code cleanup: rename BM_face_legal_splits -> BM_face_splits_check_legalCampbell Barton