Drawing: Remove broken and unused DrawingAlgos.py file

This commit is contained in:
Priit Laes 2016-03-12 12:50:01 +02:00 committed by wmayer
parent 55826040d2
commit 744724af51
3 changed files with 0 additions and 29 deletions

View File

@ -91,7 +91,6 @@ target_link_libraries(Drawing ${Drawing_LIBS})
SET(Drawing_Scripts
Init.py
DrawingAlgos.py
)
fc_target_copy_resource(Drawing

View File

@ -8,7 +8,6 @@ INSTALL(
FILES
Init.py
InitGui.py
DrawingAlgos.py
DrawingExample.py
DrawingTests.py
DrawingPatterns.py

View File

@ -1,27 +0,0 @@
import FreeCAD, Part, Drawing
startSVG = """<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ev="http://www.w3.org/2001/xml-events"
version="1.1" baseProfile="full"
width="297mm" height="420mm">
"""
def createSVG(Part):
# projecting with HLR
[Visibly,Hidden] = Drawing.project(Part)
buffer = startSVG
for i in Hidden.Edges:
buffer += '<line x1="' +`i.Vertexes[0].X` +'" y1="' +`i.Vertexes[0].Y` +'" x2="'+ `i.Vertexes[1].X`+ '" y2="'+ `i.Vertexes[1].Y`+ '" stroke="#fff000" stroke-width="1px" />\n'
for i in Visibly.Edges:
buffer += '<line x1="' +`i.Vertexes[0].X` +'" y1="' +`i.Vertexes[0].Y` +'" x2="'+ `i.Vertexes[1].X`+ '" y2="'+ `i.Vertexes[1].Y`+ '" stroke="#000000" stroke-width="1px" />\n'
buffer += '</svg>'
return buffer