﻿<?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%2FPhysics%2FSoftBody_Vars</id>
	<title>Dev:Source/Physics/SoftBody Vars - 版の履歴</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.blender.jp/index.php?action=history&amp;feed=atom&amp;title=Dev%3ASource%2FPhysics%2FSoftBody_Vars"/>
	<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Physics/SoftBody_Vars&amp;action=history"/>
	<updated>2026-05-02T09:18:42Z</updated>
	<subtitle>このウィキのこのページに関する変更履歴</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://wiki.blender.jp/index.php?title=Dev:Source/Physics/SoftBody_Vars&amp;diff=41930&amp;oldid=prev</id>
		<title>Yamyam: 1版 をインポートしました</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Physics/SoftBody_Vars&amp;diff=41930&amp;oldid=prev"/>
		<updated>2018-06-28T17:45:16Z</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/Physics/SoftBody_Vars&amp;diff=41929&amp;oldid=prev</id>
		<title>2014年8月19日 (火) 00:40にwiki&gt;Britaによる</title>
		<link rel="alternate" type="text/html" href="https://wiki.blender.jp/index.php?title=Dev:Source/Physics/SoftBody_Vars&amp;diff=41929&amp;oldid=prev"/>
		<updated>2014-08-19T00:40:50Z</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;{{NiceTip&lt;br /&gt;
|This page is *severely outdated*&lt;br /&gt;
|This page has not been updated since 2005, it is very outdated.&amp;lt;br/&amp;gt;&lt;br /&gt;
If you have questions, ask in #blendercoders at IRC}}&lt;br /&gt;
&lt;br /&gt;
'''Summary'''&lt;br /&gt;
&lt;br /&gt;
To add get / set functionality to all the variables in the Softbody and Particle Deflection&lt;br /&gt;
&lt;br /&gt;
== Particle Deflection Datastruct==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
typedef struct [[BlenderDev/PartDeflect|PartDeflect]] { &lt;br /&gt;
short deflect;      /* A- Deflection flag - does mesh deflect particles*/ &lt;br /&gt;
short forcefield;   /* B- Force field type, do the vertices attract / repel particles ?*/ &lt;br /&gt;
short flag;      /* C- general settings flag */ &lt;br /&gt;
short pad;  &lt;br /&gt;
float pdef_damp;   /* D- Damping factor for particle deflection  */ &lt;br /&gt;
float pdef_rdamp;   /* E- Random element of damping for deflection */ &lt;br /&gt;
float pdef_perm;   /* F- Chance of particle passing through mesh */&lt;br /&gt;
 float f_strength;   /* G- The strength of the force (+ or - ) */ &lt;br /&gt;
float f_power;      /* H- The power law - real gravitation is 2 (square)  */ &lt;br /&gt;
float maxdist;      /* I- if indicated, use this maximum */&lt;br /&gt;
} PartDeflect;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These are implemented in the following functions in this patch&lt;br /&gt;
https://projects.blender.org/tracker/?func=detail&amp;amp;aid=2406&amp;amp;group_id=9&amp;amp;atid=127&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
A - getPIDeflection, setPIDeflection&lt;br /&gt;
B - getPIType, setPIType&lt;br /&gt;
C - getPIUseMaxDist, setPIUseMaxDist&lt;br /&gt;
D - getPISurfaceDamp, setPISurfaceDamp&lt;br /&gt;
E - getPIRandomDamp, setPIRandomDamp&lt;br /&gt;
F - getPIPerm, setPIPerm&lt;br /&gt;
G - getPIStrength, setPIStrength&lt;br /&gt;
H - getPIFalloff, setPIFalloff&lt;br /&gt;
I - getPIMaxDist, setPIMaxDist&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
== Softbody Datastruct==&lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;&lt;br /&gt;
typedef struct [[BlenderDev/SoftBody|SoftBody]] { /* dynamic data */ &lt;br /&gt;
int totpoint, totspring; &lt;br /&gt;
struct [[BlenderDev/BodyPoint|BodyPoint]] '''bpoint;  /''' not saved in file */&lt;br /&gt;
struct [[BlenderDev/BodySpring|BodySpring]] '''bspring;  /''' not saved in file */ &lt;br /&gt;
float ctime;               /* last time calculated */  /* part of UI: */ &lt;br /&gt;
float nodemass;      /* softbody mass of '''vertex''' */ &lt;br /&gt;
float grav;         /* softbody amount of gravitaion to apply */ &lt;br /&gt;
float mediafrict;   /* friction to env */ &lt;br /&gt;
float rklimit;      /* error limit for ODE solver */  &lt;br /&gt;
float goalspring;   /* softbody goal springs */ &lt;br /&gt;
float goalfrict;   /* softbody goal springs friction */ &lt;br /&gt;
float mingoal;      /* quick limits for goal */ &lt;br /&gt;
float maxgoal;  &lt;br /&gt;
float inspring;      /* softbody inner springs */ &lt;br /&gt;
float infrict;      /* softbody inner springs friction */  &lt;br /&gt;
float defgoal;      /* default goal for vertices without vgroup */ &lt;br /&gt;
} SoftBody;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
-- [[BlenderDev/JohnnyMatthews|JohnnyMatthews]] - 06 Apr 2005&lt;br /&gt;
&lt;br /&gt;
[[Category:Script]]&lt;/div&gt;</summary>
		<author><name>wiki&gt;Brita</name></author>
		
	</entry>
</feed>