Search found 7 matches
- Tue Jul 31, 2012 2:12 am
- Forum: SVG / XML Code
- Topic: Display of Bezier Curves in C#
- Replies: 19
- Views: 14375
Re: Display of Bezier Curves in C#
Yes, the side you linked to, derives the coordinates for the controll-points by assuming the bezier should touch half-ways. When I took my inkscape generated numbers and checked the coordinates I found, that the controll points' coordinates use precisely this "kappa". That's why I conclude...
- Sat Jul 28, 2012 1:26 am
- Forum: SVG / XML Code
- Topic: Display of Bezier Curves in C#
- Replies: 19
- Views: 14375
Re: Display of Bezier Curves in C#
@vince: Your remark got me thinking: If you write a path like: m2,0 6,8 4,5 ... this looks like a "chain" of coordinates, when added one to the previous give you a "chain" of points: that picture seems to fit to the idea of "the moving point" and leads to the missunders...
- Sat Jul 28, 2012 12:23 am
- Forum: News, Events & Developments
- Topic: Commercial use not covered by GNU GPLv2
- Replies: 2
- Views: 5776
Re: Commercial use not covered by GNU GPLv2
Hello, I have just gotten an answer from the Free Software Foundation; to say it in short: upstream software has to provide the same type of license, i.e. no incorporation of free software into commercial software (unless your commercial software is for free as well :o) ). The only way to use the so...
- Fri Jul 27, 2012 9:47 pm
- Forum: News, Events & Developments
- Topic: Commercial use not covered by GNU GPLv2
- Replies: 2
- Views: 5776
Commercial use not covered by GNU GPLv2
Hello, I'm currently evaluating Inkscape and some other commercial tools for use in the commercial software of the company I work for. As far as I understand, the GNU GPLv2 license regulates copying, distribution and modification of inkscape - but what if we want to incorporate some features in our ...
- Thu Jul 26, 2012 10:15 pm
- Forum: SVG / XML Code
- Topic: Display of Bezier Curves in C#
- Replies: 19
- Views: 14375
Re: Display of Bezier Curves in C#
@vince: You are probably right, when you say that there is no "strong relationship" between the two control points. Neither are there between the first point and the control points - you can choose them as you want/ have to. I don't want to argue: the only thing I would have liked to see s...
- Thu Jul 26, 2012 12:31 am
- Forum: SVG / XML Code
- Topic: Display of Bezier Curves in C#
- Replies: 19
- Views: 14375
Re: Display of Bezier Curves in C#
Hello, meanwhile I found out, what is going wrong, thanks for the answers so far - next time I will post more details. The reason, why I approximate a circle with four Beziers is, that inkscape does so, when I load my PDF and convert it to SVG. Editing by hand is no option, since I have a lot of PDF...
- Fri Jul 20, 2012 8:44 pm
- Forum: SVG / XML Code
- Topic: Display of Bezier Curves in C#
- Replies: 19
- Views: 14375
Display of Bezier Curves in C#
Hello, I have got the following problem: I use Inkscape to import a PDF that contains a vector graphic and export to normal svg. When I use Inkscape or Firefox to view the generated svg file everything is ok. When I parse the svg using C# code and try to draw what I parsed on a C# Windows Form, some...