Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ImportedProjects
SVG
Commits
fa870975
Commit
fa870975
authored
Jun 02, 2012
by
Tebjan Halm
Browse files
polygon fix and minor repo cleanup
parent
41581021
Changes
9
Hide whitespace changes
Inline
Side-by-side
Source/Basic Shapes/SvgPolygon.cs
View file @
fa870975
...
...
@@ -43,14 +43,14 @@ namespace Svg
try
{
for
(
int
i
=
0
;
i
<
this
.
_points
.
Count
;
i
+=
2
)
for
(
int
i
=
2
;
i
<
this
.
_points
.
Count
;
i
+=
2
)
{
PointF
endPoint
=
new
PointF
(
this
.
_points
[
i
].
ToDeviceValue
(
this
),
this
.
_points
[
i
+
1
].
ToDeviceValue
(
this
));
//
TODO: Remove unrequired
first line
//first line
if
(
_path
.
PointCount
==
0
)
{
_path
.
AddLine
(
endPoint
,
endPoint
);
_path
.
AddLine
(
new
PointF
(
this
.
_points
[
i
-
2
].
ToDeviceValue
(
this
),
this
.
_points
[
i
-
1
].
ToDeviceValue
(
this
))
,
endPoint
);
}
else
{
...
...
Source/Svg.suo
deleted
100644 → 0
View file @
41581021
File deleted
Source/obj/Debug/Svg.csproj.FileListAbsolute.txt
deleted
100644 → 0
View file @
41581021
C:\Dev\vvvv\vvvv\public\common\src\thirdparty\Svg.dll
C:\Dev\vvvv\vvvv\public\common\src\thirdparty\Svg.pdb
C:\Dev\vvvv\SVG\Source\obj\Debug\ResolveAssemblyReference.cache
C:\Dev\vvvv\SVG\Source\obj\Debug\Svg.dll
C:\Dev\vvvv\SVG\Source\obj\Debug\Svg.pdb
C:\Dev\vvvv\vvvv\public\common\src\thirdparty\Svg.XML
Source/obj/Debug/Svg.dll
deleted
100644 → 0
View file @
41581021
File deleted
Source/obj/Debug/Svg.pdb
deleted
100644 → 0
View file @
41581021
File deleted
Source/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache
deleted
100644 → 0
View file @
41581021
File deleted
Source/obj/Release/Svg.csproj.FileListAbsolute.txt
deleted
100644 → 0
View file @
41581021
C:\Dev\vvvv\SVG\Source\obj\Release\ResolveAssemblyReference.cache
C:\Dev\vvvv\vvvv\public\common\src\thirdparty\Svg.dll
C:\Dev\vvvv\vvvv\public\common\src\thirdparty\Svg.pdb
C:\Dev\vvvv\SVG\Source\obj\Release\Svg.dll
C:\Dev\vvvv\SVG\Source\obj\Release\Svg.pdb
Source/obj/Release/Svg.dll
deleted
100644 → 0
View file @
41581021
File deleted
Source/obj/Release/Svg.pdb
deleted
100644 → 0
View file @
41581021
File deleted
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment