﻿<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ja">
	<id>https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3ASaphireS%2Fgsoc2016%2Fdocumentation</id>
	<title>利用者:SaphireS/gsoc2016/documentation - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=%E5%88%A9%E7%94%A8%E8%80%85%3ASaphireS%2Fgsoc2016%2Fdocumentation"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:SaphireS/gsoc2016/documentation&amp;action=history"/>
	<updated>2026-07-05T23:53:33Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:SaphireS/gsoc2016/documentation&amp;diff=152169&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:SaphireS/gsoc2016/documentation&amp;diff=152169&amp;oldid=prev"/>
		<updated>2018-06-28T21:21:07Z</updated>

		<summary type="html">&lt;p&gt;1版 をインポートしました&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;ja&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;← 古い版&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #222; text-align: center;&quot;&gt;2018年6月28日 (木) 21:21時点における版&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;ja&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(相違点なし)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Yamyam</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:SaphireS/gsoc2016/documentation&amp;diff=152168&amp;oldid=prev</id>
		<title>wiki&gt;SaphireS: /* Improved Pack Islands Tool */</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:SaphireS/gsoc2016/documentation&amp;diff=152168&amp;oldid=prev"/>
		<updated>2016-08-17T09:35:43Z</updated>

		<summary type="html">&lt;p&gt;‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;Improved Pack Islands Tool&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= End-User Documentation (GSOC2016 Project: UV Tools) =&lt;br /&gt;
&lt;br /&gt;
== Improved Pack Islands Tool == &lt;br /&gt;
&lt;br /&gt;
A new and improved packing (''Pack Islands'') operator was arguably the biggest and most complex task of this Google Summer Of Code project.&lt;br /&gt;
This implementation was done as a separate operator since the current ''Pack Islands'' and the new '''Irregular Pack Islands''' are fundamentally different in how they work. &lt;br /&gt;
&lt;br /&gt;
The new Irregular Pack Islands can be accessed through the UV Menu or by pressing {{Shortcut|shift|ctrl|p}}.&lt;br /&gt;
&lt;br /&gt;
[[File:irregular_pack_menu.png|left|735px]]{{clr}}&lt;br /&gt;
&lt;br /&gt;
{{RefBox&lt;br /&gt;
|mode=Edit Mode (Mesh)&lt;br /&gt;
|hotkey={{Shortcut|shift|ctrl|p}}&lt;br /&gt;
|menu=UVs → Pack Islands (irregular)&lt;br /&gt;
|lang=en&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Note|Type of boundaries|The ''irregular'' in the name of the new operater is based in the fact that it is able to deal with irregular shapes (UV islands), while the current Pack Islands operator just used the bounding rectangles of the UV islands for placement. The picture below illustrates the different types of UV island boundaries that can be used for computing a packing solution: The red rectangle bounds are used by the current operator, one can see already that this results in a lot of wasted space. The green convex bounds are already a great improvement over the rectangle ones. Imagine putting a rubber band around the UV islands, then you get the convex hull/bounds. The blue concave boundaries follow exactly the outline of the UV islands, including concavities and holes. While these produce the best results they're also very computation heavy and an option to use the (faster to compute) convex bounds has been added to the new operator.&lt;br /&gt;
&lt;br /&gt;
[[File:hull_types.png|center|800px]]}}&lt;br /&gt;
&lt;br /&gt;
''Pack Islands (irregular)'' is a '''modal''' operator, which means after it is started it iteratively searches for better solutions until either the user is satisfied or a defined number of iterations is met. For this operator state-of-the-art algorithms and heuristics in bin packing were used, mostly Simulated Annealing and No-Fit-Polygon computation. Those interested in the technical and implementation details are referred to this page: [[User:SaphireS/gsoc2016/Packing|Packing Implementation Notes]]&lt;br /&gt;
&lt;br /&gt;
Modal operator in Blender work like this: Once it's calles it caclulates better solutions iteratively until either the max. number of iterations is reached (see '''options''' below) or the user accepts/cancel the operator. ''While the operator is running'' this can be done with the following shortcuts:&lt;br /&gt;
*{{Shortcut|LMB}} or {{Shortcut|Return}} or {{Shortcut|PadEnter}}: Finish operator and keep result.&lt;br /&gt;
*{{Shortcut|RMB}} or {{Shortcut|Esc}} : Cancel operator and revert back to the state before calling Pack Islands (irregular).&lt;br /&gt;
&lt;br /&gt;
The recommended way to change operator settings is calling it and accepting the result, then press {{Shortcut|F6}} to bring up the operator settings menu and change the desired settings.&lt;br /&gt;
&lt;br /&gt;
The operator has the following options for users:&lt;br /&gt;
&lt;br /&gt;
[[File:irregular_pack_options.png|left|328px]]{{clr}}&lt;br /&gt;
&lt;br /&gt;
Here's what each one of these does:&lt;br /&gt;
&lt;br /&gt;
* '''Use concave boundaries''': If this checkbox is ticked concave boundaries are used instead of convex ones, which leads to better results but is also slower and more computation heavy!&lt;br /&gt;
* '''Margin''': Margin or &amp;quot;Padding&amp;quot; is a minimum distance between each of the UV islands and the UV border. Default is 0.0.&lt;br /&gt;
* '''Rotation Steps''': This option tells the operator how many different rotations for the UV islands are allowed. Example: 0/1 = no rotation, 2 = 2 different rotations (180°rotation steps), 4 = 4 different rotations (90° rotation steps), 8 = 45° rotation steps and so on. The more rotation steps the better the potential result but the more computation performance is needed.&lt;br /&gt;
* '''Iterations''': Number of iterations before it stops searching for better solutions, 0 = runs until the users stops. &lt;br /&gt;
* '''Average Islands Scale''': Run the ''Average Islands Scale'' operator before starting packing if this checkbox is ticked.&lt;br /&gt;
&lt;br /&gt;
{{NiceTip|Number of iterations|With only a few iterations it should be possible to get better results compared to the old &amp;quot;Pack Islands&amp;quot; operator in most cases.}}&lt;br /&gt;
&lt;br /&gt;
Here are a few examples of the old vs. the new operator (using ''convex'' setting and only 1 initial iteration):&lt;br /&gt;
&lt;br /&gt;
{|align=center&lt;br /&gt;
| [[Image:Pack_1_comparison.jpg|thumb|250px| Comparison of old and new operator (convex setting, 1 iteration)]]&lt;br /&gt;
| [[Image:Pack_2_comparison.jpg|thumb|250px| Comparison of old and new operator (convex setting, 1 iteration)]]&lt;br /&gt;
| [[Image:packing_margin_2.jpg|thumb|250px| Margin support]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Select Shortest Vertex Path Tool ==&lt;br /&gt;
&lt;br /&gt;
The ''Select Shortest Vertex Path'' operator works similar to its counterpart in 3D View, it selects the shortest vertex path between two selected vertices. &lt;br /&gt;
Make sure to only have 2 UV vertices selected prior to calling this operator, otherwise it displays a warning to have exactly 2 vertices selected for it to work. &lt;br /&gt;
&lt;br /&gt;
The operator can be found in the ''Select'' menu of the UV editor: {{Menu|Select|Select Shortest Vertex Path}}. &lt;br /&gt;
&lt;br /&gt;
[[File:shortest_path_menu.png|601px]]&lt;br /&gt;
&lt;br /&gt;
The operator has one option: A checkbox to use '''Topological Distance'''. By default the path with the smallest spatial distance is chosen, if ''Topological Distance'' is ticked, the path with the least amount of vertices is chosen instead. An animated version can be found here:&lt;br /&gt;
&lt;br /&gt;
[[File:shortest_path.gif|frame|400px|center|Animated .gif of this operator in action]]&lt;br /&gt;
&lt;br /&gt;
== Scale to Bounds Tool ==&lt;br /&gt;
&lt;br /&gt;
Sometimes also referred to as &amp;quot;Normalize UVs&amp;quot;, this tool can be used to scale the selected UV Islands to fit the UV bounds.{{clr}}&lt;br /&gt;
It can be found in the UVs menu: {{Menu|UVs|Scale to bounds}}&lt;br /&gt;
&lt;br /&gt;
[[File:Scale_bounds_menu.png|647px]]&lt;br /&gt;
&lt;br /&gt;
The operator has the following options: &lt;br /&gt;
&lt;br /&gt;
* '''Keep Aspect Ratio''': If this checkbox is ticked the aspect ratio of the current selection is kept while scaling up. If it's unticked the selection is tretched to fit width and height of the UV boundaries/loaded image.&lt;br /&gt;
* '''Individual''': If this checkbox is ticked the individual UV islands are scaled to fit the UV boundaries, the default behaviour (unchecked) is that the current selection as a whole is scaled to fit the boundaries.&lt;br /&gt;
&lt;br /&gt;
An animated version can be found below: &lt;br /&gt;
[[File:scale_bounds.gif|frame|400px|center|Animated version of the ''Scale To Bounds'' operator and its options]]&lt;br /&gt;
&lt;br /&gt;
== Snapping Improvements ==&lt;br /&gt;
&lt;br /&gt;
The '''incremental snapping''' in Blenders UV editor had very low precision, resulting in effectively only 8 snapping intervals per axis.&lt;br /&gt;
&lt;br /&gt;
During this project the precision for this was increased, with the possibility to hold down {{Shortcut|Shift}} for even more precise snapping.&lt;br /&gt;
&lt;br /&gt;
{{Note|Already in master|Because of high demand this feature has already been commited to master and will be in the upcoming 2.78 release. [[Dev:Ref/Release_Notes/2.78/UI#Other|Release Notes]]}}&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;Real&amp;quot; UV Un/Hiding + Mesh De/Selection ==&lt;br /&gt;
&lt;br /&gt;
For quite some time Blender was lacking any &amp;quot;real&amp;quot; hiding capabilities for UVs. The hiding that was in place before this project was actually deselecting the mesh in 3d view to hide UVs in UV editor. &lt;br /&gt;
&lt;br /&gt;
Now there's proper hiding, which hides the selected parts without changing the mesh selection in 3D view. {{clr}}&lt;br /&gt;
It can be accessed using the usual hide/unhide shortcuts:&lt;br /&gt;
&lt;br /&gt;
* '''Hide Selected''': {{Shortcut|H}}&lt;br /&gt;
* '''Hide Unselected''': {{Shortcut|Shift|H}}&lt;br /&gt;
* '''Reveal''': {{Shortcut|Alt|H}}&lt;br /&gt;
&lt;br /&gt;
Or using the UVs menu: {{Menu|UVs|Show/Hide}}&lt;br /&gt;
&lt;br /&gt;
[[File:hide_uvs_menu.png|729px]]&lt;br /&gt;
&lt;br /&gt;
The &amp;quot;old&amp;quot; hiding behaviour is still used in quite a few workflows though, so it's also made available as new operators and can be found in the UVs menu: {{clr}}&lt;br /&gt;
{{Menu|UVs|De/Select 3D Mesh}}&lt;br /&gt;
&lt;br /&gt;
They're also usable with shortcuts (same as Show/Hide shortcuts + ''Ctrl'' as modifier key):&lt;br /&gt;
&lt;br /&gt;
* '''Deselect 3D Mesh (selected)''': {{Shortcut|Ctrl|H}}&lt;br /&gt;
* '''Deselect 3D Mesh (unselected)''': {{Shortcut|Ctrl|Shift|H}}&lt;br /&gt;
* '''Select 3D Mesh''': {{Shortcut|Ctrl|Alt|H}}&lt;br /&gt;
&lt;br /&gt;
[[File:Deselect_mesh_uv.jpg|546px]]&lt;br /&gt;
&lt;br /&gt;
== Select Overlapping UVs Tool ==&lt;br /&gt;
&lt;br /&gt;
As the name suggests, this operator can be used to find all UV islands which overlap other UV islands. When called it selects all overlapping UV islands. {{clr}}&lt;br /&gt;
It can be found in the ''Select'' menu: &lt;br /&gt;
&lt;br /&gt;
{{Menu|Select|Select All by Trait|Select Overlapping UVs}}&lt;br /&gt;
&lt;br /&gt;
[[File:select_overlapping.jpg|722px]]&lt;br /&gt;
&lt;br /&gt;
== Optional Packing for Unwrap Tools ==&lt;br /&gt;
&lt;br /&gt;
Calling &amp;quot;Pack Islands&amp;quot; is now optional for most unwrap operators. This was enabled by default, now the user can decide to pack or not after unwrapping by simply ticking the '''Pack Islands''' checkbox.&lt;br /&gt;
&lt;br /&gt;
[[File:optional_unwrap.gif|500px|frame|Optional packing for Unwrap Operators]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;SaphireS</name></author>
		
	</entry>
</feed>