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
2010-10-16most unused arg warnings corrected.Campbell Barton
- removed deprecated bitmap arg from IMB_allocImBuf (plugins will need updating). - mostly tagged UNUSED() since some of these functions look like they may need to have the arguments used later.
2010-10-15tag UNUSED() for operator exec() and invoke() functions.Campbell Barton
2010-10-08bugfix [#24179] Button "Loop Cut and Slide" on Mesh Tools not workCampbell Barton
also added a message in the tooltip to say `why` a buttons disabled. depends on the operators poll setting the message.
2010-10-01Add distance check in lasso generation to get a smoother lasso.Nathan Letwory
Hopefully this helps with lasso select troubles [#21179].
2010-10-01attempt to fix [#21179] r26939 - Lasso tool does not work when drawing ↵Campbell Barton
counter clock wise can't test this so guessing this is caused by face culling.
2010-09-27bugfix [#23995] Do loop cuts from the space bar search while in the ↵Campbell Barton
properties panel crashes blender.
2010-09-23bugfix [#23595] Texture paint with a node based brush produces artifactsCampbell Barton
also changed displace modifier not to link object depgraph when not using object texturespace.
2010-09-21bug report [#23933] "Select Linked" with "Limit by Seams" only working for ↵Campbell Barton
Face Mode selection This is intentional so include in tooltip
2010-08-16- remove unused includes IMB_*, BIF_* & MEM_*Campbell Barton
- remove MEM_guardedalloc.h from header files (include directly)
2010-08-08remove unused includesCampbell Barton
2010-07-30bugfix [#20038] Vertex path selection not working in Vertex/Face modeCampbell Barton
- disable this tool if edge mode isnt enabled using its poll function. Also fixed a bug where it would de-select the last active edge. - made view3d grid drawing use GL_LINES's for less context switching.
2010-07-22Fix de/select all operator naming for consistencyMatt Ebb
2010-07-17spelling correction: alredy --> alreadyCampbell Barton
2010-06-23Fix #21369: normals on extruded text and curve objects were flippedBrecht Van Lommel
for the backside, giving problems with e.g. boolean operations.
2010-06-01just a small commit to get myself back into thge swing of thingsMichael Fox
via a request there is now axis control in the vertes smooth operator (really small easy to remove if no one likes )
2010-04-24warning cleanup, also made voxel.c and volumetric.c use BM_INLINE define ↵Campbell Barton
rather then having their own ifdefs in each file.
2010-04-21replace add_v3_v3v3() --> add_v3_v3() where possibleCampbell Barton
2010-04-17bugfix and cleanupCampbell Barton
- BGE Shader.setSampler(name, index): index range check was wrong. - Compositor check for an invalid channel was incorrect. - getting the center of selected verts used an uninitalized z axis. - do_init_render_material() used && rather then & when testing for MA_TRANSP. - weight paint activate flipped bone used && rather then & for flag checking.
2010-04-01Fix [#21860] Quads/Triangles Selection miss to mark some Edges.Matt Ebb
2010-03-29Fix [#21679] add_grid "operator's subdivison" Change Dimensions Matt Ebb
2010-03-23more lint includesCampbell Barton
Only source/blender/editors/ dir, should not give errors on different platforms Only removing: UI_*.h, ED_*.h, WM_*.h, DNA_*.h, IMB_*.h, RNA_*.h, PIL_*.h
2010-03-22spaces -> tabs, (4 spaces == 1 tab, only for white space preceding text)Campbell Barton
2010-03-21Fix syntax for ID keyword.Guillermo S. Romero
2010-02-28[#19918] edit mode with mesh only having edges without faces+face select modeMartin Poirier
Make select all operator select mode sensitive (it won't select elements that aren't selectable) Patch by Sergey Sharybin (nazgul) (slightly modified)
2010-02-21bugfix [#21258] Select > Mirror causes segmentation fault.Campbell Barton
2010-02-17topology based mirror, (from apricot branch)Campbell Barton
- correct errors with non-mirrored meshes - mirror weight paint on asymmetrical meshes
2010-02-12correct fsf addressCampbell Barton
2010-02-11batch remove .'s used with RNA_def_struct_ui_textCampbell Barton
2010-02-09add access to edge select tagging from mesh toolbar (tagging seams on Ctrl+RMB)Campbell Barton
2010-01-28PROP_ENUM_NO_CONTEXT flag for rna properties, forcing enum item functions to ↵Martin Poirier
be passed a null context (to return non-contextual items). This is set on keymap item operator properties and macro definition operator properties to make them non-contextual (since the context at definition time is most likely not the same then at execution time, it's better to have all options visible). This removes some more errors in keymap export and import. This commit also sanitize some enum item function, making sure they can cope with null context and have usable defaults in that case.
2010-01-16Fix: MESH_OT_DELETE wasn't working since rev. 26027, ↵Dalai Felinto
MESH_OT_select_by_number_vertices neither for the MESH_OT_select_... ENUM text fix (s/Triangles/Quads) and invoke added (WM_menu_invoke).
2010-01-16generic operator menu was searching for "type" and using the first enum ↵Campbell Barton
property if it wasnt found. this is too arbitrary and could break if roperty order is changed. store the property in the operator type that is to be used for menu and enum search func's. python function for searching operator enums on invoke. (just need dynamic python enums now) wm.invoke_search_popup(self)
2010-01-15- particle drawing was using invalid memory with weights.Campbell Barton
- particle set weight operator (Shift + K) and from the menu. - mirror vertex groups operator can also flip weight group names. a number of utility functions for weight groups added int *get_defgroup_flip_map(struct Object *ob); void flip_vertexgroup_name (char *name_r, const char *name, int strip_number); // moved from modifier.c void copy_defvert (struct MDeformVert *dvert_r, const struct MDeformVert *dvert); void flip_defvert (struct MDeformVert *dvert, int *flip_map);
2010-01-15Tweaked/added poll functions to prevent operators that requireMatt Ebb
a 3D View from being used outside the 3D View (i.e. the info header search button)
2010-01-08Fix #20604: Make Normals Consistent (Ctrl N) doesn't respect selection.Brecht Van Lommel
2009-12-22select nth (face/edge/vertex) - depending on which was last selected, useful ↵Campbell Barton
for colapsing every other edge for eg.
2009-12-22- make ToolSettings.mesh_selection_mode into an array of 3 bools rather then ↵Campbell Barton
an enum since multiple can be set at once. - ToolSettings had its id.data set to NULL when taken directly from the context (causing a crash in cases) - menu for changing vert/edge/face selection now a python menu, removed operator. - wm.context_set_value(), would really prefer not to have this since it evaluates the value as a python expression however there are no ways to define arrays in PyOperators
2009-12-15number button precission was far too low, description also bit.Campbell Barton
2009-12-15solidify would only work as expecyed if all faces were selected, added an ↵Campbell Barton
override to extrude that means it runs without removing selected faces first, even on a partial selection
2009-12-15solidify from 2.4x (ported from python to C)Campbell Barton
- shell_angle_to_dist() was using degrees
2009-12-10Patch [#20290] by Bjørnar Hansen for bug [#20270] 2.5a0, Select Random says ↵Martin Poirier
percent but is really 0-1
2009-12-03Fix for [#20180] Wrong multiplicator in Random SelectionMatt Ebb
Also: Added extend select option to select random (off by default) Tweaked 'Select Axis' to use an enum for axes
2009-11-301. Extend option for 3d view border select now does something (default True ↵Martin Poirier
to keep same behavior) 2. Add action parameter to Select_All_Toggle operators, rename to Select_All. Options are Toggle (default), Select, Deselect, Invert (same as select swap). This makes it possible to map separate hotkeys for select all and deselect all. NOTE for Aligorith: I didn't change animation operators for select_all which already had an Invert operator. These should be fixed eventually.
2009-11-26Simplify mesh selection type operator and add missing header refresh notifier.Martin Poirier
Also remove REGISTER flag from operator (no need to see this in operator history).
2009-11-24Made select operator return FINISHED only when it did something (only ↵Martin Poirier
PASSTHROUGH otherwise)
2009-11-21[#19930] Nurb CV select is failing because of view clippingCampbell Barton
- the clipping test function was using the rv3d->viewmatob where it needed to use the object matrix. - added a local clipping member to rv3d, the clipping planes in object-space, avoids many matrix multiplications when testing verts or clipping pixels when projection painting.
2009-11-17select linked enables seam limit when in face mode and the "limit" property ↵Campbell Barton
is not set (like in 2.4x)
2009-11-10Math LibBrecht Van Lommel
* Convert all code to use new functions. * Branch maintainers may want to skip this commit, and run this conversion script instead, if they use a lot of math functions in new code: http://www.pasteall.org/9052/python
2009-10-21Silencing some compiler warnings for mingwJoshua Leung
* Unused functions * Uninitialised vars
2009-10-20fix for mirror select and added to the menuCampbell Barton