﻿<?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%3ASource%2FModeling%2FMesh_Edit_Mode_Structs</id>
	<title>Dev:Source/Modeling/Mesh Edit Mode Structs - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ASource%2FModeling%2FMesh_Edit_Mode_Structs"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Modeling/Mesh_Edit_Mode_Structs&amp;action=history"/>
	<updated>2026-06-02T04:04:33Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Source/Modeling/Mesh_Edit_Mode_Structs&amp;diff=43152&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Modeling/Mesh_Edit_Mode_Structs&amp;diff=43152&amp;oldid=prev"/>
		<updated>2018-06-28T17:45:48Z</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:45時点における版&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:Source/Modeling/Mesh_Edit_Mode_Structs&amp;diff=43151&amp;oldid=prev</id>
		<title>2010年4月3日 (土) 12:33にwiki&gt;Terrywallworkによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Modeling/Mesh_Edit_Mode_Structs&amp;diff=43151&amp;oldid=prev"/>
		<updated>2010-04-03T12:33:33Z</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;== Edit Mode Structs==&lt;br /&gt;
=== EditVert===&lt;br /&gt;
Add Explanation Here&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
typedef struct [[BlenderDev/EditVert|EditVert]]&lt;br /&gt;
{ struct [[BlenderDev/EditVert|EditVert]] '''next, '''prev, *vn; float no[3]; float co[3]; short xs, ys; unsigned char f, h, f1, f2; short fast; /* only 0 or 1, for editmesh_fastmalloc */ short totweight;    /* __NLA */ int hash; struct [[BlenderDev/MDeformWeight|MDeformWeight]] '''dw; /''' __NLA */ int keyindex; /* original index #, for restoring  key information */&lt;br /&gt;
} EditVert;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== EditEdge===&lt;br /&gt;
Add Explanation Here&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
typedef struct [[BlenderDev/EditEdge|EditEdge]]&lt;br /&gt;
{ struct [[BlenderDev/EditEdge|EditEdge]] '''next, '''prev; struct [[BlenderDev/EditVert|EditVert]] '''v1, '''v2, *vn; short f1, f2; /* short, f1 is (ab)used in subdiv */ unsigned char f, h, dir, seam; float crease; short fast;   /* only 0 or 1, for editmesh_fastmalloc */ short fgoni;  /* index for fgon, for search */ [[BlenderDev/HashEdge|HashEdge]] hash;&lt;br /&gt;
} EditEdge;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== EditFace===&lt;br /&gt;
Add Explanation Here&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
typedef struct [[BlenderDev/EditFace|EditFace]]&lt;br /&gt;
{ struct [[BlenderDev/EditFace|EditFace]] '''next, '''prev; struct [[BlenderDev/EditVert|EditVert]] '''v1, '''v2, '''v3, '''v4; struct [[BlenderDev/EditEdge|EditEdge]] '''e1, '''e2, '''e3, '''e4; float n[3], cent[3]; short xs, ys;  /* selection */ struct [[BlenderDev/TFace|TFace]] tf; /* a copy of original tface. */ unsigned char mat_nr, flag; unsigned char f, f1, h, puno; unsigned char fast;   /* only 0 or 1, for editmesh_fastmalloc */ unsigned char fgonf;  /* flag for fgon options */&lt;br /&gt;
} EditFace;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
=== EditMesh===&lt;br /&gt;
Add Explanation Here&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
typedef struct [[BlenderDev/EditMesh|EditMesh]]&lt;br /&gt;
{ [[BlenderDev/ListBase|ListBase]] verts, edges, faces; [[BlenderDev/HashEdge|HashEdge]] *hashedgetab;  /* this is for the editmesh_fastmalloc */ [[BlenderDev/EditVert|EditVert]] '''allverts, '''curvert; [[BlenderDev/EditEdge|EditEdge]] '''alledges, '''curedge; [[BlenderDev/EditFace|EditFace]] '''allfaces, '''curface;  struct [[BlenderDev/DerivedMesh|DerivedMesh]] *derived;&lt;br /&gt;
} EditMesh;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Script]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Terrywallwork</name></author>
		
	</entry>
</feed>