﻿<?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%3AMiyagix%2FGSoC%2717%2FDocs</id>
	<title>利用者:Miyagix/GSoC'17/Docs - 版の履歴</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%3AMiyagix%2FGSoC%2717%2FDocs"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Miyagix/GSoC%2717/Docs&amp;action=history"/>
	<updated>2026-09-01T09:49:09Z</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:Miyagix/GSoC%2717/Docs&amp;diff=153381&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:Miyagix/GSoC%2717/Docs&amp;diff=153381&amp;oldid=prev"/>
		<updated>2018-06-28T21:22:38Z</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:22時点における版&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:Miyagix/GSoC%2717/Docs&amp;diff=153380&amp;oldid=prev</id>
		<title>2017年6月17日 (土) 08:22にwiki&gt;Miyagixによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=%E5%88%A9%E7%94%A8%E8%80%85:Miyagix/GSoC%2717/Docs&amp;diff=153380&amp;oldid=prev"/>
		<updated>2017-06-17T08:22:46Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Clipping Brush ==&lt;br /&gt;
Task for now:&lt;br /&gt;
&lt;br /&gt;
= Working =&lt;br /&gt;
When a user clicks on the mesh while selecting clip brush, the brush will clip the region which lies in projection of the brush. For instance, assume the brush as a cylinder with its planar face lying towards the viewer screen or we can say the axis of brush lies normal to system's screen. When a user clicks on the surface of the mesh, the portion of vertices enclosed by that cylinder gets clipped and a plane get create in clipped surface. &lt;br /&gt;
&lt;br /&gt;
= How will it work =&lt;br /&gt;
Initially I was thinking of deleting the vertices that has been enclosed by the cylinder and then create  new faces and vertices in the hollow portion that will be created by deleting vertices, to get a closed surface. But deleting vertices from inside sculpt mode is kind of difficult so maybe I will be implementing it in future. For now, I have think of a new method inspired from ZBrush clipping option. There are two part/method to implement this:&lt;br /&gt;
&lt;br /&gt;
==Method one==  &lt;br /&gt;
In this, The main task will be to push the enclosed vertices in that cylinder to the surface of the cylinder along the normal to axis of cylinder. &lt;br /&gt;
&lt;br /&gt;
=== Basic algorithm for this ===&lt;br /&gt;
Assume: &amp;lt;br&amp;gt;&lt;br /&gt;
* test.no = normal from plane of brush i.e. direction of axis of brush.&lt;br /&gt;
* ss = location of center of brush.&lt;br /&gt;
* vd.co = coordinate of single vertex&lt;br /&gt;
* foot = foot of perpendicular of vd.co in axis of brush.&lt;br /&gt;
* length = squared length between vd.co and foot.&lt;br /&gt;
* r = squared radius of brush.&lt;br /&gt;
&lt;br /&gt;
According to vector algebra, &amp;lt;br&amp;gt;&lt;br /&gt;
New position of vertex should be [foot + (radius / length)*(vd.co - foot)].&amp;lt;br&amp;gt;&lt;br /&gt;
But this will not work as desired because it pushes all vertex towards the curved surface of brush cylinder and this will create a big circular planar region with a circular face in mesh. How to solve it?&lt;br /&gt;
* We will use the mouse dragging direction to define the orientation of vertices just like what rotate brush do. Using this concept, a basic model of clipping brush can be done.&lt;br /&gt;
&lt;br /&gt;
[[File:Clip_Demo_M1.png|center|thumb|400px|Clip Brush Method One Implemented]]&lt;br /&gt;
&lt;br /&gt;
// Also, This brush will work only on that portion of mesh, where it meets the empty space in 3dview. Since we are pushing the vertices instead of deleting it, it will be a limitation of the brush for now.&lt;br /&gt;
&lt;br /&gt;
==Method Two==&lt;br /&gt;
In above method of pushing vertices, the problem is about the vertices which lies outside the domain of brush where vertex gets pushed effectively. So, to detect this vertex, I will be finding intersecting point of brush and portion of mesh where it touches space in 3dview plane. Then, this data will be used to check whether vertex should be pushed normally as in method one or distribute it in boundary as per its initially location. We can find this new coordinate by simple geometry.  &lt;br /&gt;
Currently I am trying initial method and later I will use that mouse drag option. &amp;lt;br&amp;gt;&lt;br /&gt;
My recent commits implementing this method are [https://developer.blender.org/rBf691de8b679bec65b09c578babfb6b22fa879aec commits]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Miyagix</name></author>
		
	</entry>
</feed>