<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/rotconvlib/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Mon, 22 Jan 2018 12:25:14 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/rotconvlib/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -1,14 +1,14 @@
-#Rotations Conversion Library#
+# Rotations Conversion Library
 **Author:** Philipp Allgeuer
-**Version:** 1.1.0
-**Date:** 12/08/16
+**Version:** 1.2.0
+**Date:** 22/01/18

-##General Overview##
-The Rotations Conversion Library (RCL) is a collection of functions that address common computations and numerical handling of rotations in 3D Euclidean space. The rotation representations that are supported are rotation matrices (`Rotmat`), Quaternions (`Quat`), intrinsic ZYX Euler angles (`Euler`), fused angles (`Fused`) and tilt angles (`Tilt`). In addition to the core competency of being able to convert between each of the representations, operations such as inversion, ZYX yaw extraction, fused yaw extraction, renormalisation, equality detection, vector rotation and much more have been implemented. Unit tests for each function are provided to ensure that the library performs exactly as it should. The implementation of the Rotations Conversion Library is based on the very related Matlab/Octave Rotations Library (MORL), which is a highly tested reference implementation for the required conversion algorithms (see https://sourceforge.net/projects/rotationslib/).
+## General Overview
+The Rotations Conversion Library (RCL) is a collection of functions that address common computations and numerical handling of rotations in 3D Euclidean space. The rotation representations that are supported are rotation matrices (`Rotmat`), Quaternions (`Quat`), intrinsic ZYX Euler angles (`Euler`), fused angles (`Fused`) and tilt angles (`Tilt`). In addition to the core competency of being able to convert between each of the representations, operations such as inversion, ZYX yaw extraction, fused yaw extraction, renormalisation, equality detection, vector rotation and much more have been implemented. Tilt vector addition and the relative and absolute tilt phase spaces are also supported. Unit tests for each function are provided to ensure that the library performs exactly as it should. The implementation of the Rotations Conversion Library is based on the very related Matlab/Octave Rotations Library (MORL), which is a highly tested reference implementation for the required conversion algorithms (see https://sourceforge.net/projects/rotationslib/).

-Please note that the ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author, and have been specifically designed to overcome the many limitations and peculiarities of the Euler angles representation. More information can be found in the IROS paper *"Fused Angles: A Representation of Body Orientation for Balance"* (at time of writing available online at http://www.ais.uni-bonn.de/~pallgeuer/papers/IROS_2015_fused.pdf).
+Please note that the ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author, and have been specifically designed to overcome the many limitations and peculiarities of the Euler angles representation. More information can be found in the IROS paper *"Fused Angles: A Representation of Body Orientation for Balance"* (at time of writing available online at http://www.ais.uni-bonn.de/~pallgeuer/papers/IROS_2015_fused.pdf). The tilt phase space is also an invention of the author.

-##Getting Started##
+## Getting Started
 This library is implemented as a collection of platform-independent C++ source files. To get started (if you haven't done so already) download the latest ZIP of the library from the SourceForge page, and extract it to the desired location on your computer.

 There are three ways of using the library:
@@ -18,9 +18,7 @@

 Due to the small and efficient nature of the library, one of the first two options is recommended. Very minimal benefit is expected from building a dynamic library.

-Note that as at release v1.1.0, the required source files are simply `rot_conv.h` and `rot_conv.cpp`.
-
-##Notes on Numerical Stability##
+## Notes on Numerical Stability
 Although as much as possible has been done to try to avoid the problems associated with numerical stability and accuracy, the extent to which this is possible is limited by the presence of singularities in the rotation representations, floating point errors, and the use of (unavoidable and required) functions of high numerical sensitivity. For example:
 ~~~
 Code:
@@ -41,7 +39,7 @@
 ~~~
 can quickly turn into comparatively larger errors in the output variables, for certain *highly specific* input scenarios.

-##Quick Help##
+## Quick Help
 Every function of the library is well-commented. A summary of the five rotation representations is shown in the following table.

 **Representation** | **Code** | **Format** | **Universal set**
@@ -54,10 +52,10 @@

 The ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author (see *General Overview*).

-##Where To Get More Help?##
+## Where To Get More Help?
 If a look into the source code does not resolve an issue you have with the library, then you can contact the author at the email address given in the *Bugs and Improvements* section.

-##Bugs and Improvements##
+## Bugs and Improvements
 I welcome all feedback, suggestions and bug reports. If you improve or fix anything about the library then I encourage you to let me know so that the library can be improved for everyone!

 **Email:** `pallgeuer[at]ais.uni-bonn.de`
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Mon, 22 Jan 2018 12:25:14 -0000</pubDate><guid>https://sourceforge.net35b1607f6fb8a352fd2fe97ebbe16f15d2f38c4a</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -6,7 +6,7 @@
 ##General Overview##
 The Rotations Conversion Library (RCL) is a collection of functions that address common computations and numerical handling of rotations in 3D Euclidean space. The rotation representations that are supported are rotation matrices (`Rotmat`), Quaternions (`Quat`), intrinsic ZYX Euler angles (`Euler`), fused angles (`Fused`) and tilt angles (`Tilt`). In addition to the core competency of being able to convert between each of the representations, operations such as inversion, ZYX yaw extraction, fused yaw extraction, renormalisation, equality detection, vector rotation and much more have been implemented. Unit tests for each function are provided to ensure that the library performs exactly as it should. The implementation of the Rotations Conversion Library is based on the very related Matlab/Octave Rotations Library (MORL), which is a highly tested reference implementation for the required conversion algorithms (see https://sourceforge.net/projects/rotationslib/).

-Please note that the ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author, and have been specifically designed to overcome the many limitations and peculiarities of the Euler angles representation. More information can be found in the IROS paper *"Fused Angles: A Representation of Body Orientation for Balance"* (at time of writing available online at http://www.ais.uni-bonn.de/papers/IROS_2015_Allgeuer.pdf).
+Please note that the ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author, and have been specifically designed to overcome the many limitations and peculiarities of the Euler angles representation. More information can be found in the IROS paper *"Fused Angles: A Representation of Body Orientation for Balance"* (at time of writing available online at http://www.ais.uni-bonn.de/~pallgeuer/papers/IROS_2015_fused.pdf).

 ##Getting Started##
 This library is implemented as a collection of platform-independent C++ source files. To get started (if you haven't done so already) download the latest ZIP of the library from the SourceForge page, and extract it to the desired location on your computer.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Fri, 28 Oct 2016 15:15:25 -0000</pubDate><guid>https://sourceforge.net35951663a1de3a9f4f0895de4ab5cddf3103fe1d</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -1,7 +1,7 @@
 #Rotations Conversion Library#
 **Author:** Philipp Allgeuer
-**Version:** 1.0.1
-**Date:** 11/08/16
+**Version:** 1.1.0
+**Date:** 12/08/16

 ##General Overview##
 The Rotations Conversion Library (RCL) is a collection of functions that address common computations and numerical handling of rotations in 3D Euclidean space. The rotation representations that are supported are rotation matrices (`Rotmat`), Quaternions (`Quat`), intrinsic ZYX Euler angles (`Euler`), fused angles (`Fused`) and tilt angles (`Tilt`). In addition to the core competency of being able to convert between each of the representations, operations such as inversion, ZYX yaw extraction, fused yaw extraction, renormalisation, equality detection, vector rotation and much more have been implemented. Unit tests for each function are provided to ensure that the library performs exactly as it should. The implementation of the Rotations Conversion Library is based on the very related Matlab/Octave Rotations Library (MORL), which is a highly tested reference implementation for the required conversion algorithms (see https://sourceforge.net/projects/rotationslib/).
@@ -18,7 +18,7 @@

 Due to the small and efficient nature of the library, one of the first two options is recommended. Very minimal benefit is expected from building a dynamic library.

-Note that as at release v1.0.1, the required source files are simply `rot_conv.h` and `rot_conv.cpp`.
+Note that as at release v1.1.0, the required source files are simply `rot_conv.h` and `rot_conv.cpp`.

 ##Notes on Numerical Stability##
 Although as much as possible has been done to try to avoid the problems associated with numerical stability and accuracy, the extent to which this is possible is limited by the presence of singularities in the rotation representations, floating point errors, and the use of (unavoidable and required) functions of high numerical sensitivity. For example:
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Fri, 12 Aug 2016 16:59:43 -0000</pubDate><guid>https://sourceforge.net333c5d80116c6d744864368011666a2edb645c6c</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -46,11 +46,11 @@

 **Representation** | **Code** | **Format** | **Universal set**
 --- |:---:| --- | ---
-ZYX Euler angles | `Euler` |  (ψ, θ, φ) = &lt;br/&gt;`(yaw, pitch, roll)` | (-π,π] × \[-π/2,π/2\] × (-π,π]
-Fused angles | `Fused` | `(ψ, θ, φ, h) =`&lt;br/&gt;`(fused yaw, fused pitch, fused roll, hemi)` | (-π,π] × \[-π/2,π/2\] × \[-π/2,π/2\] × {-1,1}
-Quaternion | `Quat` | `(w, x, y, z)]` | ℚ
+ZYX Euler angles | `Euler` |  (ψ, θ, φ) =&lt;br/&gt;`(yaw, pitch, roll)` | (-π,π] × \[-π/2,π/2\] × (-π,π]
+Fused angles | `Fused` | (ψ, θ, φ, h) =&lt;br/&gt;`(fused yaw, fused pitch, fused roll, hemi)` | (-π,π] × \[-π/2,π/2\] × \[-π/2,π/2\] × {-1,1}
+Quaternion | `Quat` | `(w, x, y, z)` | ℚ
 Rotation matrix | `Rotmat` | `3x3 matrix` | SO(3)
-Tilt angles | `Tilt` | `(ψ, γ, α) =`&lt;br/&gt;`(fused yaw, tilt axis angle, tilt angle)` | (-π,π] × (-π,π] × \[0,π\]
+Tilt angles | `Tilt` | (ψ, γ, α) =&lt;br/&gt;`(fused yaw, tilt axis angle, tilt angle)` | (-π,π] × (-π,π] × \[0,π\]

 The ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author (see *General Overview*).

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Thu, 11 Aug 2016 14:57:40 -0000</pubDate><guid>https://sourceforge.net564f9140f054e0ac06874f2e6df7af0d5fe17938</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -47,10 +47,10 @@
 **Representation** | **Code** | **Format** | **Universal set**
 --- |:---:| --- | ---
 ZYX Euler angles | `Euler` |  (ψ, θ, φ) = &lt;br/&gt;`(yaw, pitch, roll)` | (-π,π] × \[-π/2,π/2\] × (-π,π]
-Fused angles | `Fused` | `[psi theta phi h] =`&lt;br/&gt;`(fused yaw, fused pitch, fused roll)` | (-π,π] × \[-π/2,π/2\] × \[-π/2,π/2\] × {-1,1}
-Quaternion | `Quat` | `[w x y z]` | ℚ
+Fused angles | `Fused` | `(ψ, θ, φ, h) =`&lt;br/&gt;`(fused yaw, fused pitch, fused roll, hemi)` | (-π,π] × \[-π/2,π/2\] × \[-π/2,π/2\] × {-1,1}
+Quaternion | `Quat` | `(w, x, y, z)]` | ℚ
 Rotation matrix | `Rotmat` | `3x3 matrix` | SO(3)
-Tilt angles | `Tilt` | `[psi gamma alpha] =`&lt;br/&gt;`(fused yaw, tilt axis angle, tilt angle)` | (-π,π] × (-π,π] × \[0,π\]
+Tilt angles | `Tilt` | `(ψ, γ, α) =`&lt;br/&gt;`(fused yaw, tilt axis angle, tilt angle)` | (-π,π] × (-π,π] × \[0,π\]

 The ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author (see *General Overview*).

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Thu, 11 Aug 2016 14:55:13 -0000</pubDate><guid>https://sourceforge.net97e3914fdc8782275c75605268bd41a7f6b9232b</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -22,24 +22,23 @@

 ##Notes on Numerical Stability##
 Although as much as possible has been done to try to avoid the problems associated with numerical stability and accuracy, the extent to which this is possible is limited by the presence of singularities in the rotation representations, floating point errors, and the use of (unavoidable and required) functions of high numerical sensitivity. For example:
-
 ~~~
 Code:
-std::cout &amp;lt;&amp;lt; "Expect acos(1) = 0, but with an epsilon of error it is " &amp;lt;&amp;lt; acos(1.0 - std::numeric_limits&amp;lt;double&amp;gt;::epsilon()) &amp;lt;&amp;lt; std::endl;
-std::cout &amp;lt;&amp;lt; "Expect sqrt(0) = 0, but with an epsilon of error it is " &amp;lt;&amp;lt; sqrt(0.0 + std::numeric_limits&amp;lt;double&amp;gt;::epsilon()) &amp;lt;&amp;lt; std::endl;
+double eps = std::numeric_limits&amp;lt;double&amp;gt;::epsilon();
+std::cout &amp;lt;&amp;lt; "Epsilon is " &amp;lt;&amp;lt; eps &amp;lt;&amp;lt; std::endl;
+std::cout &amp;lt;&amp;lt; "Expect acos(1) = 0, but with an epsilon of error it is " &amp;lt;&amp;lt; acos(1.0 - eps) &amp;lt;&amp;lt; std::endl;
+std::cout &amp;lt;&amp;lt; "Expect sqrt(0) = 0, but with an epsilon of error it is " &amp;lt;&amp;lt; sqrt(0.0 + eps) &amp;lt;&amp;lt; std::endl;

 Output:
+Epsilon is 2.22045e-16
 Expect acos(1) = 0, but with an epsilon of error it is 2.10734e-08
 Expect sqrt(0) = 0, but with an epsilon of error it is 1.49012e-08
 ~~~
-
 This means that very tiny floating point errors in required expressions such as
-
 ~~~
 double alpha = acos(2.0*(q.w()*q.w() + q.z()*q.z()) - 1.0)
 double calpha = sqrt(1.0 - (sth*sth + sphi*sphi))
 ~~~
-
 can quickly turn into comparatively larger errors in the output variables, for certain *highly specific* input scenarios.

 ##Quick Help##
@@ -47,7 +46,7 @@

 **Representation** | **Code** | **Format** | **Universal set**
 --- |:---:| --- | ---
-ZYX Euler angles | `Euler` | `[psi theta phi] =`&lt;br/&gt;`(yaw, pitch, roll)` | (-π,π] × \[-π/2,π/2\] × (-π,π]
+ZYX Euler angles | `Euler` |  (ψ, θ, φ) = &lt;br/&gt;`(yaw, pitch, roll)` | (-π,π] × \[-π/2,π/2\] × (-π,π]
 Fused angles | `Fused` | `[psi theta phi h] =`&lt;br/&gt;`(fused yaw, fused pitch, fused roll)` | (-π,π] × \[-π/2,π/2\] × \[-π/2,π/2\] × {-1,1}
 Quaternion | `Quat` | `[w x y z]` | ℚ
 Rotation matrix | `Rotmat` | `3x3 matrix` | SO(3)
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Thu, 11 Aug 2016 14:31:15 -0000</pubDate><guid>https://sourceforge.netfdfd49573a25a547173dabfe85609c9ee946cf4d</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,70 @@
-Welcome to your wiki!
+#Rotations Conversion Library#
+**Author:** Philipp Allgeuer
+**Version:** 1.0.1
+**Date:** 11/08/16

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
+##General Overview##
+The Rotations Conversion Library (RCL) is a collection of functions that address common computations and numerical handling of rotations in 3D Euclidean space. The rotation representations that are supported are rotation matrices (`Rotmat`), Quaternions (`Quat`), intrinsic ZYX Euler angles (`Euler`), fused angles (`Fused`) and tilt angles (`Tilt`). In addition to the core competency of being able to convert between each of the representations, operations such as inversion, ZYX yaw extraction, fused yaw extraction, renormalisation, equality detection, vector rotation and much more have been implemented. Unit tests for each function are provided to ensure that the library performs exactly as it should. The implementation of the Rotations Conversion Library is based on the very related Matlab/Octave Rotations Library (MORL), which is a highly tested reference implementation for the required conversion algorithms (see https://sourceforge.net/projects/rotationslib/).

-The wiki uses [Markdown](/p/rotconvlib/wiki/markdown_syntax/) syntax.
+Please note that the ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author, and have been specifically designed to overcome the many limitations and peculiarities of the Euler angles representation. More information can be found in the IROS paper *"Fused Angles: A Representation of Body Orientation for Balance"* (at time of writing available online at http://www.ais.uni-bonn.de/papers/IROS_2015_Allgeuer.pdf).

-[[members limit=20]]
+##Getting Started##
+This library is implemented as a collection of platform-independent C++ source files. To get started (if you haven't done so already) download the latest ZIP of the library from the SourceForge page, and extract it to the desired location on your computer.
+
+There are three ways of using the library:
+1. Directly include the source files in your project, and build them with the rest of your project.
+2. Build a static library (e.g. `*.a` or `*.lib`) of the source code and link your project to it.
+3. Build a dynamic library (e.g. `*.so` or `*.dll`) of the source code and link your project to it.
+
+Due to the small and efficient nature of the library, one of the first two options is recommended. Very minimal benefit is expected from building a dynamic library.
+
+Note that as at release v1.0.1, the required source files are simply `rot_conv.h` and `rot_conv.cpp`.
+
+##Notes on Numerical Stability##
+Although as much as possible has been done to try to avoid the problems associated with numerical stability and accuracy, the extent to which this is possible is limited by the presence of singularities in the rotation representations, floating point errors, and the use of (unavoidable and required) functions of high numerical sensitivity. For example:
+
+~~~
+Code:
+std::cout &amp;lt;&amp;lt; "Expect acos(1) = 0, but with an epsilon of error it is " &amp;lt;&amp;lt; acos(1.0 - std::numeric_limits&amp;lt;double&amp;gt;::epsilon()) &amp;lt;&amp;lt; std::endl;
+std::cout &amp;lt;&amp;lt; "Expect sqrt(0) = 0, but with an epsilon of error it is " &amp;lt;&amp;lt; sqrt(0.0 + std::numeric_limits&amp;lt;double&amp;gt;::epsilon()) &amp;lt;&amp;lt; std::endl;
+
+Output:
+Expect acos(1) = 0, but with an epsilon of error it is 2.10734e-08
+Expect sqrt(0) = 0, but with an epsilon of error it is 1.49012e-08
+~~~
+
+This means that very tiny floating point errors in required expressions such as
+
+~~~
+double alpha = acos(2.0*(q.w()*q.w() + q.z()*q.z()) - 1.0)
+double calpha = sqrt(1.0 - (sth*sth + sphi*sphi))
+~~~
+
+can quickly turn into comparatively larger errors in the output variables, for certain *highly specific* input scenarios.
+
+##Quick Help##
+Every function of the library is well-commented. A summary of the five rotation representations is shown in the following table.
+
+**Representation** | **Code** | **Format** | **Universal set**
+--- |:---:| --- | ---
+ZYX Euler angles | `Euler` | `[psi theta phi] =`&lt;br/&gt;`(yaw, pitch, roll)` | (-π,π] × \[-π/2,π/2\] × (-π,π]
+Fused angles | `Fused` | `[psi theta phi h] =`&lt;br/&gt;`(fused yaw, fused pitch, fused roll)` | (-π,π] × \[-π/2,π/2\] × \[-π/2,π/2\] × {-1,1}
+Quaternion | `Quat` | `[w x y z]` | ℚ
+Rotation matrix | `Rotmat` | `3x3 matrix` | SO(3)
+Tilt angles | `Tilt` | `[psi gamma alpha] =`&lt;br/&gt;`(fused yaw, tilt axis angle, tilt angle)` | (-π,π] × (-π,π] × \[0,π\]
+
+The ***fused angles*** and ***tilt angles*** rotation representations are the invention of the author (see *General Overview*).
+
+##Where To Get More Help?##
+If a look into the source code does not resolve an issue you have with the library, then you can contact the author at the email address given in the *Bugs and Improvements* section.
+
+##Bugs and Improvements##
+I welcome all feedback, suggestions and bug reports. If you improve or fix anything about the library then I encourage you to let me know so that the library can be improved for everyone!
+
+**Email:** `pallgeuer[at]ais.uni-bonn.de`
+
+##Screenshots##
+The screenshots below show an example of some graphical output of the Rotations Conversion Library.
+[[project_screenshots]]
+[[project_admins]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Thu, 11 Aug 2016 13:45:55 -0000</pubDate><guid>https://sourceforge.netf3d503573631501933b837aeb5c330f814700a36</guid></item><item><title>Home modified by Philipp Allgeuer</title><link>https://sourceforge.net/p/rotconvlib/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/rotconvlib/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;
	&lt;ul class="md-users-list"&gt;
		&lt;li&gt;&lt;a href="/u/pallgeuer/"&gt;Philipp Allgeuer&lt;/a&gt; (admin)&lt;/li&gt;
		
	&lt;/ul&gt;&lt;br/&gt;
&lt;p&gt;&lt;span class="download-button-57ac6b5c04161f7336b55f2c" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Philipp Allgeuer</dc:creator><pubDate>Thu, 11 Aug 2016 12:11:08 -0000</pubDate><guid>https://sourceforge.netd6c98d24230b27e35abaec167f220629cd5f213e</guid></item></channel></rss>