﻿<?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=Dev_talk%3ASource%2FBlender%2FModeling%2FSculpting_Tools</id>
	<title>Dev talk:Source/Blender/Modeling/Sculpting Tools - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev_talk%3ASource%2FBlender%2FModeling%2FSculpting_Tools"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev_talk:Source/Blender/Modeling/Sculpting_Tools&amp;action=history"/>
	<updated>2026-04-25T21:33:16Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev_talk:Source/Blender/Modeling/Sculpting_Tools&amp;diff=47462&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev_talk:Source/Blender/Modeling/Sculpting_Tools&amp;diff=47462&amp;oldid=prev"/>
		<updated>2018-06-28T17:47:47Z</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日 (木) 17:47時点における版&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=Dev_talk:Source/Blender/Modeling/Sculpting_Tools&amp;diff=47461&amp;oldid=prev</id>
		<title>wiki&gt;Mindrones: moved Talk:BlenderDev/Sculpting Tools to Dev talk:Source/Blender/Modeling/Sculpting Tools:&amp;#32;move to Dev:</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev_talk:Source/Blender/Modeling/Sculpting_Tools&amp;diff=47461&amp;oldid=prev"/>
		<updated>2009-06-04T22:30:46Z</updated>

		<summary type="html">&lt;p&gt;moved &lt;a href=&quot;/%E3%83%88%E3%83%BC%E3%82%AF:BlenderDev/Sculpting_Tools&quot; class=&quot;mw-redirect&quot; title=&quot;トーク:BlenderDev/Sculpting Tools&quot;&gt;Talk:BlenderDev/Sculpting Tools&lt;/a&gt; to &lt;a href=&quot;/Dev_talk:Source/Blender/Modeling/Sculpting_Tools&quot; title=&quot;Dev talk:Source/Blender/Modeling/Sculpting Tools&quot;&gt;Dev talk:Source/Blender/Modeling/Sculpting Tools&lt;/a&gt;: move to Dev:&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新規ページ&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Blender does have a vector structure, defined in source/blender/makesdna/DNA_vec_types.h.  There's also (two) libraries for dealing with vectors and matrices; these however only operate on arrays of three floats (see source/blender/blenlib/MTC_vectorops.h, MTC_matrixops.h for the newer library, and source/blender/blenlib/arithb.h for the older (and preferred) one).&lt;br /&gt;
&lt;br /&gt;
-- [[User:Joeedh|Joeedh]]&lt;br /&gt;
&lt;br /&gt;
== Transform tools? ==&lt;br /&gt;
&lt;br /&gt;
Would it be possible at all to connect this up as an input for Blender's existing transform system? It would be so good if you could 'paint' whatever transformation you like, such as move, rotate, shear, 'to sphere', etc.&lt;br /&gt;
&lt;br /&gt;
--[[User:Broken|Broken]] 08:28, 2 June 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
:: This is an interesting idea... some of it could be done by creating a &amp;quot;morph brush&amp;quot;, which would morph areas of the mesh into another mesh. That would be an easy way to paint 'shear' and 'to sphere'.  Rotate would be more difficult though, since it would be most useful if it were rotating locally around the cursor, not the entire model.  --[[User:Nicholasbishop|Nicholasbishop]] 18:42, 7 June 2006 (CEST)&lt;br /&gt;
&lt;br /&gt;
==Finding Adjacent Verts==&lt;br /&gt;
&lt;br /&gt;
Finding adjacent verts can be done by generating a look-up table of adjacency info on first entering sculpt mode.  The basic idea that I've found to be fairly fast is to allocate an array of ListBases, each cell corrusponding to one vert, thus creating basically an array of doubly-linked lists.  Then, you can simply loop through each edge in the mesh and add it (through a reference structure, since adding the edges directly will mess up the EditMesh structure) to the link-lists corrusponding to its first and second verts. At that point finding the adjacent edges around a vert is as simple as doing:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
edgeref = array_of_listbases[vert-&amp;gt;tmp.l] //you can store the vert-index in the array in &lt;br /&gt;
                                          //the -&amp;gt;tmp.l member&lt;br /&gt;
while (edgeref) {&lt;br /&gt;
   edge = edgeref-&amp;gt;edge;&lt;br /&gt;
   edgeref=edgeref-&amp;gt;next;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I hope that makes sense (I'm really tired right now :) ).&lt;br /&gt;
&lt;br /&gt;
-- [[User:Joeedh|Joeedh]] 3:23 PM (GMT -7 Arizona Mountain Time)&lt;br /&gt;
&lt;br /&gt;
:: Thanks. This looks simpler and faster than how I'd been doing it, since this uses edges instead of faces. I'll incorporate this into the design. --[[User:Nicholasbishop|Nicholasbishop]] 17:08, 7 June 2006 (CEST)&lt;/div&gt;</summary>
		<author><name>wiki&gt;Mindrones</name></author>
		
	</entry>
</feed>