From e7c0568b2d37bbde61786b0c9f1365f1fe8f9ab4 Mon Sep 17 00:00:00 2001 From: stribor14 Date: Wed, 27 Mar 2019 16:54:47 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ae4a3d8..b6da115 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Bezier-Cpp [![Build Status](https://travis-ci.com/stribor14/Bezier-cpp.svg?branch=master)](https://travis-ci.com/stribor14/Bezier-cpp) -![v1.0](https://img.shields.io/badge/version-1.0-blue.svg) +![v0.1](https://img.shields.io/badge/version-0.1-blue.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/aceb46ce7de1407abd56cfc127dba5f1)](https://www.codacy.com/app/stribor14/Bezier-cpp?utm_source=github.com&utm_medium=referral&utm_content=stribor14/Bezier-cpp&utm_campaign=Badge_Grade) Fast and lightweight class for using the Bezier curves of any order in C++ @@ -12,7 +12,7 @@ Fast and lightweight class for using the Bezier curves of any order in C++ - Fast operations on curves - Dynamic manipulation -## Implementeed methods +## Implemented methods - Get value, curvature, tangent and normal for parameter *t* - Get t from projection any point onto a curve - Get derivative curve @@ -24,12 +24,14 @@ Fast and lightweight class for using the Bezier curves of any order in C++ - Manipulate dot on curve (only for quadratic and cubic curves) ## In development - - v1.1 indev Bezier polycurves + - v0.2 indev Bezier polycurves - [x] Create polycurve (C0 continuity) - [x] Equivalent methods from Bezier curves - [x] Adding and removing curves - [ ] Curve continuity and manipulation - - v1.2 planned Bezier shapes + - [ ] Document polycurve features + - [ ] More sophisticated example + - v0.3 planned Bezier shapes ## Dependencies - c++11