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
2008-09-26svn merge -r 16608:16749 ↵soc-2008-jaguarandiAndre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-09-19Merge from trunkAndre Susano Pinto
(The last time there was some files missing due to failed connection to svn server while merging.. thats why this stuff of reverting last merge and redoing it) svn merge -r 16231:16608 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-09-19Revert last merge from trunkAndre Susano Pinto
svn merge -r 16539:16538 https://svn.blender.org/svnroot/bf-blender/branches/soc-2008-jaguarandi/
2008-09-15svn merge -r 16231:16536 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-08-22svn merge -r 16215:16231 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-08-22svn merge -r 16174:16215 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-08-18svn merge -r 16077:16174 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-08-15Simpledeform origin is no longer attache to parent by defaultAndre Susano Pinto
That was due to a current limitation on dag system.. that leads to cyclic dependencies. So now you can attach the origin of a simpledeform to an empty and mark whether its affected by the relative position of empty or the global one. brecht found a workarround to solve the cyclic dependency by using a parent of both the mesh and the control empty: empty_parent | |-> empty controlling simpledeform |-> mesh with simpledeform modifier
2008-08-14Added subsurface levels option to normal projection.Andre Susano Pinto
Now when doing normal projeciton is possible to ask it to project along the normals that the vertex would have if it was subsurfaced... this gives "better" projections on low polys. Point of this commit is to add the feature request from Eclectiel http://blenderartists.org/forum/showpost.php?p=1181531&postcount=9 workflow as Eclectiel wanted is now possible: to archieve a nice low-res retopology that aproximates a high-res mesh when subsurfaced: 1 - make base low-poly retopo 2 - apply a shrinkwrap with projection along normal.. and with SS level = N (where N>0) 3 - add a Subsurface with level N 4 - run bretch's script (ss_fit)
2008-08-13Fixed a typoAndre Susano Pinto
I was using the word "kept" (past tense) instead of "keep" (basic form). I hope my english teachter dont sees this commit xD
2008-08-13*Added documentation mainly at shrinkwrap.cAndre Susano Pinto
*removed commented code about the dropped shrinkwrap options *Removed references to "cut plane", "limitMesh".. its now called "auxiliar target" *Added option to shrinkwrap over an selected axis *"Normal projection" mode is now called "projection" since it can now project over "normal, and any combination X, Y, Z"
2008-08-04SimpleDeform modifications:Andre Susano Pinto
* Added "Lock axis" options on taper and strech/squash (suggested by ZanQdo) * Better control of deform factor (suggested by ZanQdo) * Added eModifierTypeFlag_AcceptsCVs (so it now accepts both curves and meshes)
2008-08-03added openmp support for bvhtree build (max processes = tree_type)Andre Susano Pinto
2008-08-03Added shrinkwrap as a constraint.Andre Susano Pinto
All modes are available: nearest surface nearest vertex normal projection (along X,Y or Z axis)
2008-08-02svn merge -r 15688:15908 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-07-26Fixed simple deform strech/squash functionAndre Susano Pinto
2008-07-25Converted shrinkwrap to a DeformOnly modifierAndre Susano Pinto
*the options "remove faces", "merge" points were removed *made shrinkwrap work with CVs (curves and nurbs surfaces) *cleanup shrinkwrap code.. (removed bruteforces and raytree methods)
2008-07-22svn merge -r 15590:15688 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-07-19*Added "kept" mesh above surface option on shrinkwrap to nearest surfaceAndre Susano Pinto
changed a few code relative to project over normal mode (to try to kept code generic and more independent of modifier itself)
2008-07-13svn merge -r 15392:15551 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-07-04*Added vertex groups on simple deformAndre Susano Pinto
*Fixed a few UI things *Make SimpleDeform and Shrinkwrap to use vertexgroup_get_vertex_weight, a similar function "static float vert_weight(MDeformVert *dvert, int group)" existed on modifier.c, changed it a bit and moved into BKE_deform.h
2008-07-04Added modes Squash and Strech to SimpleDeform (need testing)Andre Susano Pinto
CHanged the add modifier menu to show a submenu for selecting the type of simpledeform.
2008-07-01svn merge -r 15292:15392 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-06-27Modifications on simple modifierAndre Susano Pinto
+Added limits on bend +button to create an empty and make child of object +empty is now relative to object
2008-06-24Adding initial SimpleModifier (bend,taper,twist)Andre Susano Pinto
(I might only touch this code again late on the week :S, so here is a tmp commit)
2008-06-21svn merge -r 15202:15292 ↵Andre Susano Pinto
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-06-21Added cut-plane option.Andre Susano Pinto
Its now possible to project 2 planes over a model and get a cloth.. Tought it still has a few issues.. related with distance to kept from mesh.
2008-06-17Added merge option to shrinkwrap when using projection mode (bruteforce for now)Andre Susano Pinto
Changed code to remove faces (now quad faces that got one vertice projected are turned on tri) Merge option is still not very usefull since shrinkwrap does not yet moves unprojected vertices
2008-06-12Merge from trunkAndre Susano Pinto
svn merge -r 15104:15202 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-06-03Merge from trunkAndre Susano Pinto
svn merge -r 15064:15104 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-06-03Collisions: Commit of collision cleanup, put kdop-bvh structure into ↵Daniel Genrich
BLI_kdopbvh (just like kdtree interface now), huge speedup for selfcollisions, also better normal collisions (merge from cloth branch)
2008-06-01Merging revisions 15020-15073 of ↵clothDaniel Genrich
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-31Added culling on normal projection.Andre Susano Pinto
Now renderdemon is happy ;) and now shrinkwrap can be used for bulging :)
2008-05-31Merge from trunkAndre Susano Pinto
svn merge -r 14954:15064 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-30This is patch [#9053] More concrete makesdna reportingKent Mein
Submitted by gsr It just makes the printf's all different so you can tell where the problem is. Kent
2008-05-25Merge from trunkAndre Susano Pinto
svn merge -r 14843:14954 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-24Merging revisions 14838-14945 of ↵Daniel Genrich
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-22Comments!!1Martin Poirier
2008-05-16Remove PLATFORM_LINKFLAGS for makesdna, was breaking debug builds with MSVC8.Ken Hughes
2008-05-15Merge from trunkAndre Susano Pinto
svn merge -r 14760:14843 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-14svn merge -r 14810:14838 ↵Daniel Genrich
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-14NLA and IPO now have the "AfterTrans Keyframe" option that prevents the ↵Joshua Leung
creation of duplicate keyframes after transform.
2008-05-12svn merge -r 14721:14810 ↵Daniel Genrich
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-12== FFMPEG ==Peter Schlaile
Add ffmpeg expert option (meaning _all_ ffmpeg option) to render dialog using properties. Also adds: H264 preset, that doesn't screw up output.
2008-05-11fix for [#11136] Segmentation fault when copying objects with hairsCampbell Barton
2008-05-10Fix for second part of bug #11107: physics systems were referring toBrecht Van Lommel
vertex groups with a number, but this got out of sync if any vertex group was deleted, now it properly updates it.
2008-05-09Merge from trunkAndre Susano Pinto
svn merge -r 14692:14760 https://svn.blender.org/svnroot/bf-blender/trunk/blender
2008-05-082.46 todo item, added back seam marking tools from UV-face mode.Campbell Barton
Since these conflict with loop select its now an option from the mesh tools panel. also made it possible to alt+rmb and alt+shift+rmb to mark other edge flags (creases, bevel weights, sharp edges)
2008-05-08Reason of all this work: Commiting my work-in-progress on reviewed collision ↵Daniel Genrich
system (better + general access to kdop, uses less memory, put it into BLI_* namespace and usage defined like existing BLI_kdtree_*). Deleted old kdop.c
2008-05-08Resolved other bad files in branch, had to kick old bullet, will have to ↵Daniel Genrich
copy from trunk