This commit is contained in:
Scott Williams 2017-02-26 21:05:44 +00:00
Родитель 8dc8746691
Коммит 97b56d47c4
3 изменённых файлов: 54 добавлений и 5 удалений

Просмотреть файл

@ -39,8 +39,7 @@
<div class="container">
<a href="/" class="brand"><img src="/assets/img/icon.svg" width="40px"> SixLabors.Shapes</a>
<ul class="nav pull-right">
<!--<li><a href="http://jetstrap.com/#love">Love</a></li>-->
<li><a href="http://sixlabors.com/blog" target="_blank">Blog</a></li>
<li><a href="http://sixlabors.com/blog" target="_blank">Six Labors Blog</a></li>
<li><a href="https://github.com/SixLabors/Shapes" target="_blank">View on GitHub</a></li>
</ul>
</div>
@ -53,6 +52,7 @@
<li class="nav-header">The docs</li>
<li data-section=""><a href="/">Home</a></li>
<li data-section="docs/installation"><a href="/docs/installation.html">Installation</a></li>
<li data-section="docs/installation"><a href="/other-projects.html">Projects using Shapes</a></li>
</ul>
</div>
<div class="span9">

Просмотреть файл

@ -6,8 +6,34 @@ title: Welcome
<div class="page-header">
<h1>Six Labors - Shapes</h1>
</div>
Welcome to the documentation, and tutorials for using Six Labors Shapes Library.
<p>
To get started, check out the links on the left.
<p>SixLabors.Shapes is a new cross-platform 2D polygon manipulation library.</p>
<p>Some of the libraries features include;
<ul>
<li>Point in Polygon</li>
<li>Line Intersections</li>
<li>Complex Polygons</li>
<li>Simple polygon clipping</li>
<li>Regular Polygons (triangles, squares, pentagons etc, any number of sides)</li>
<li>Ellipses (and therfore circles)</li>
<li>Shape Builder api - for creating shapes declaratively</li>
<li>Polygons
<ul>
<li>With Linear line segments</li>
<li>With Beziear curve line segments</li>
<li>Mixture of both Linear &amp; beziear segments</li>
</ul>
</li>
<li>Paths
<ul>
<li>With Linear line segments</li>
<li>With Beziear curve line segments</li>
<li>Mixture of both Linear &amp; beziear segments</li>
</ul>
</li>
</ul>
</p>
<h3>Other projects using SixLabors.Shapes</h3>
Check out our <a href='/other-projects.html'>list of projects</a> using SixLabors.Shapes.

23
docs/other-projects.md Normal file
Просмотреть файл

@ -0,0 +1,23 @@
---
layout: default
title: Other projects using SixLabors.Shapes
---
## Other projects using SixLabors.Shapes
Here are some other projects making use of the SixLabors.Shapes.
### [ImageSharp](https://github.com/JimBobSquarePants/ImageSharp/)
ImageSharp is a cross platform, fully manged, image manipultion and drawing library.
#### How
ImageSharp uses SixLabors.Shapes for its vector drawing subsystem. Used for drawing lines and shapes onto in memory image canvases.
### [SixLabors.Fonts](https://github.com/SixLabors/Fonts/)
Fonts is an true type/woff compatible font loading library written in c# and targets .netstandard 1.1 making it entirely crossplatform and will run on everything from android phone, to windows desktops, to linxus servers and everything in between.
#### How
SixLabors.Fonts uses SixLabors.Shapes in its sample app to render the glyphs for visual previewing.