<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?action=history&amp;feed=atom&amp;title=eosPoint%28API%29</id>
		<title>eosPoint(API) - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?action=history&amp;feed=atom&amp;title=eosPoint%28API%29"/>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=eosPoint(API)&amp;action=history"/>
		<updated>2026-05-14T14:28:37Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.23.6</generator>

	<entry>
		<id>http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=eosPoint(API)&amp;diff=3871&amp;oldid=prev</id>
		<title>Kinoshita: Created page with &quot;General/'''eosPoint''' is API to use coordinates information of mrcImage file. It is used by marker2Dto3DEstimator, eosPointRotation, and so on.  == constant ==  =...&quot;</title>
		<link rel="alternate" type="text/html" href="http://www.yasunaga-lab.bio.kyutech.ac.jp/Eos/index.php?title=eosPoint(API)&amp;diff=3871&amp;oldid=prev"/>
				<updated>2014-09-08T00:17:10Z</updated>
		
		<summary type="html">&lt;p&gt;Created page with &amp;quot;General/&amp;#039;&amp;#039;&amp;#039;eosPoint&amp;#039;&amp;#039;&amp;#039; is API to use coordinates information of &lt;a href=&quot;/Eos/index.php/mrcImage&quot; title=&quot;mrcImage&quot;&gt;mrcImage&lt;/a&gt; file. It is used by &lt;a href=&quot;/Eos/index.php/marker2Dto3DEstimator&quot; title=&quot;marker2Dto3DEstimator&quot;&gt;marker2Dto3DEstimator&lt;/a&gt;, &lt;a href=&quot;/Eos/index.php/eosPointRotation&quot; title=&quot;eosPointRotation&quot;&gt;eosPointRotation&lt;/a&gt;, and so on.  == constant ==  =...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;General/'''eosPoint''' is API to use coordinates information of [[mrcImage]] file. It is used by [[marker2Dto3DEstimator]], [[eosPointRotation]], and so on.&lt;br /&gt;
&lt;br /&gt;
== constant ==&lt;br /&gt;
&lt;br /&gt;
== struct ==&lt;br /&gt;
Coordinates value&lt;br /&gt;
 typedef double eosPointParaTypeReal;&lt;br /&gt;
&lt;br /&gt;
Coordinates Information data&lt;br /&gt;
 typedef struct eosPointCoord {&lt;br /&gt;
 	floatVector coord;&lt;br /&gt;
 	eosPointParaTypeReal sigma;  &lt;br /&gt;
 	floatVector sig;&lt;br /&gt;
 } eosPointCoord;&lt;br /&gt;
&lt;br /&gt;
Coordinates Information pointer&lt;br /&gt;
 typedef struct eosPointList {&lt;br /&gt;
 	eosPointCoord p;&lt;br /&gt;
 	struct eosPointList* next;&lt;br /&gt;
 	struct eosPointList* prev;&lt;br /&gt;
 } eosPointList ;&lt;br /&gt;
&lt;br /&gt;
Coordinates Information list&lt;br /&gt;
 typedef struct eosPoint {&lt;br /&gt;
 	eosPointList* top;  &lt;br /&gt;
 	eosPointList* current;  &lt;br /&gt;
 	eosPointList* bottom;  &lt;br /&gt;
 } eosPoint;&lt;br /&gt;
&lt;br /&gt;
== API ==&lt;br /&gt;
===Coordinates Information list===&lt;br /&gt;
Read from file&lt;br /&gt;
 extern void eosPointRead(FILE* fpt, eosPoint* p, int mode); &lt;br /&gt;
&lt;br /&gt;
Write to file&lt;br /&gt;
 extern void eosPointWrite(FILE* fpt, eosPoint* p, int mode); &lt;br /&gt;
&lt;br /&gt;
Initialization&lt;br /&gt;
 extern void eosPointInit(eosPoint* p, eosPointCoord* pc);&lt;br /&gt;
&lt;br /&gt;
Add coordinates Information&lt;br /&gt;
 extern eosPointList* eosPointAppend(eosPoint* p, eosPointCoord* pc, int mode);&lt;br /&gt;
&lt;br /&gt;
===Move Coordinates Information Pointer===&lt;br /&gt;
Move to top&lt;br /&gt;
 extern eosPointList* eosPointTop(eosPoint* p);&lt;br /&gt;
&lt;br /&gt;
Move to bottom&lt;br /&gt;
 extern eosPointList* eosPointBottom(eosPoint* p);&lt;br /&gt;
&lt;br /&gt;
Move to next&lt;br /&gt;
 extern eosPointList* eosPointNext(eosPoint* p);&lt;br /&gt;
&lt;br /&gt;
Move to preview&lt;br /&gt;
 extern eosPointList* eosPointPrev(eosPoint* p);&lt;br /&gt;
&lt;br /&gt;
===Coordinates Information data===&lt;br /&gt;
Initilization&lt;br /&gt;
 extern void eosPointCoordInit(eosPointCoord* pc, int mode);&lt;br /&gt;
&lt;br /&gt;
Setting&lt;br /&gt;
 extern void eosPointCoordSet(eosPointCoord* p, eosPointParaTypeReal x, eosPointParaTypeReal y, eosPointParaTypeReal z);&lt;br /&gt;
 extern void eosPointCoordSigSet(eosPointCoord* p, eosPointParaTypeReal sigx, eosPointParaTypeReal sigy, eosPointParaTypeReal sigz);&lt;br /&gt;
&lt;br /&gt;
Rotation&lt;br /&gt;
 extern void eosPointRotate(eosPoint* p, Matrix3D mat);&lt;br /&gt;
 extern void eosPointRotate2(eosPoint* out, eosPoint* in, Matrix3D mat);&lt;br /&gt;
&lt;br /&gt;
Copy&lt;br /&gt;
 extern void eosPointCopy(eosPoint* out, eosPoint* in);&lt;/div&gt;</summary>
		<author><name>Kinoshita</name></author>	</entry>

	</feed>