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
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-12-03 02:50:10 +0300
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-12-03 02:50:10 +0300
commit1bfcba31d2e1010a912f9cd283e348b833e43a27 (patch)
treeb2c546b991d4d9ee5d60e9e2fcd9afc870e28fe0 /source/blender/freestyle/intern/blender_interface
parent5eb840f910fafd0e1701f54a2713fdfcb0affa09 (diff)
New feature edge selection criterion based on object groups.
The Freestyle tab in the Render buttons has a couple of new options "Group" and "Group Negation". The Group option specifies a group of objects (defined through the Groups tab in the Object buttons), while the Group Negation value is either INCLUSIVE or EXCLUSIVE. If INCLUSIVE, feature edges belonging to some object in the group are selected. Otherwise, those feature edges not belonging to any object in the group are selected.
Diffstat (limited to 'source/blender/freestyle/intern/blender_interface')
-rw-r--r--source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp b/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp
index 7cb7349f61d..e17a66e6364 100644
--- a/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp
+++ b/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp
@@ -444,7 +444,7 @@ extern "C" {
lineset->qi_start = 0;
lineset->qi_end = 100;
lineset->edge_types = 0;
- lineset->objects.first = lineset->objects.last = NULL;
+ lineset->group = NULL;
if (lineset_index > 0)
sprintf(lineset->name, "LineSet %i", lineset_index+1);
else