Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
2a3adc1c
Commit
2a3adc1c
authored
Sep 02, 2016
by
Sergey Luzyanin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Bug 28132; delete unused code
parent
8d6e7b2e
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
2 additions
and
592 deletions
+2
-592
cell/model/DrawingObjects/ShapeDrawer.js
cell/model/DrawingObjects/ShapeDrawer.js
+0
-197
common/Native/Wrappers/ShapeDrawer.js
common/Native/Wrappers/ShapeDrawer.js
+0
-197
slide/Drawing/HtmlPage.js
slide/Drawing/HtmlPage.js
+2
-1
word/Drawing/ShapeDrawer.js
word/Drawing/ShapeDrawer.js
+0
-197
No files found.
cell/model/DrawingObjects/ShapeDrawer.js
View file @
2a3adc1c
...
...
@@ -257,203 +257,6 @@ function DrawLineEnd(xEnd, yEnd, xPrev, yPrev, type, w, len, drawer, trans)
}
//рисуем конечную стрелку
function
DrawTailEnd
(
type
,
length
,
width
,
x
,
y
,
angle
,
graphics
,
array_points
)
{
var
sin
,
cos
;
sin
=
Math
.
sin
(
angle
);
cos
=
Math
.
cos
(
angle
);
switch
(
type
)
{
case
AscFormat
.
ar_arrow
:
{
var
xb
,
yb
,
xc
,
yc
;
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
ds
();
break
;
}
case
AscFormat
.
ar_diamond
:
{
var
xd
,
yd
;
xb
=-
length
*
0.5
;
yb
=-
width
*
0.5
;
xc
=-
length
;
yc
=
0
;
xd
=
xb
;
yd
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_none
:
{
break
;
}
case
AscFormat
.
ar_oval
:
{
EllipseN
(
graphics
,
x
,
y
,
length
*
0.5
,
width
*
0.5
,
angle
);
break
;
}
case
AscFormat
.
ar_stealth
:
{
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=-
length
*
0.5
;
yc
=
0
;
xd
=
xb
;
yd
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_triangle
:
{
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
}
}
//рисуем начальную стрелку
function
DrawHeadEnd
(
type
,
length
,
width
,
x
,
y
,
angle
,
graphics
)
{
var
sin
,
cos
;
sin
=
Math
.
sin
(
angle
);
cos
=
Math
.
cos
(
angle
);
switch
(
type
)
{
case
AscFormat
.
ar_arrow
:
{
var
xb
,
yb
,
xc
,
yc
;
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
ds
();
break
;
}
case
AscFormat
.
ar_diamond
:
{
var
xd
,
yd
;
xb
=
length
*
0.5
;
yb
=-
width
*
0.5
;
xc
=
length
;
yc
=
0
;
xd
=
xb
;
yd
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_none
:
{
break
;
}
case
AscFormat
.
ar_oval
:
{
Ellipse2
(
graphics
,
x
,
y
,
length
*
0.5
,
width
*
0.5
,
angle
);
break
;
}
case
AscFormat
.
ar_stealth
:
{
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
length
*
0.5
;
yc
=
0
;
xd
=
xb
;
yd
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_triangle
:
{
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
}
}
function
CShapeDrawer
()
{
this
.
Shape
=
null
;
...
...
common/Native/Wrappers/ShapeDrawer.js
View file @
2a3adc1c
...
...
@@ -246,203 +246,6 @@ function DrawLineEnd(xEnd, yEnd, xPrev, yPrev, type, w, len, drawer, trans)
}
//рисуем конечную стрелку
function
DrawTailEnd
(
type
,
length
,
width
,
x
,
y
,
angle
,
graphics
,
array_points
)
{
var
sin
,
cos
;
sin
=
Math
.
sin
(
angle
);
cos
=
Math
.
cos
(
angle
);
switch
(
type
)
{
case
AscFormat
.
ar_arrow
:
{
var
xb
,
yb
,
xc
,
yc
;
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
ds
();
break
;
}
case
AscFormat
.
ar_diamond
:
{
var
xd
,
yd
;
xb
=-
length
*
0.5
;
yb
=-
width
*
0.5
;
xc
=-
length
;
yc
=
0
;
xd
=
xb
;
yd
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_none
:
{
break
;
}
case
AscFormat
.
ar_oval
:
{
EllipseN
(
graphics
,
x
,
y
,
length
*
0.5
,
width
*
0.5
,
angle
);
break
;
}
case
AscFormat
.
ar_stealth
:
{
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=-
length
*
0.5
;
yc
=
0
;
xd
=
xb
;
yd
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_triangle
:
{
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
}
}
//рисуем начальную стрелку
function
DrawHeadEnd
(
type
,
length
,
width
,
x
,
y
,
angle
,
graphics
)
{
var
sin
,
cos
;
sin
=
Math
.
sin
(
angle
);
cos
=
Math
.
cos
(
angle
);
switch
(
type
)
{
case
AscFormat
.
ar_arrow
:
{
var
xb
,
yb
,
xc
,
yc
;
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
ds
();
break
;
}
case
AscFormat
.
ar_diamond
:
{
var
xd
,
yd
;
xb
=
length
*
0.5
;
yb
=-
width
*
0.5
;
xc
=
length
;
yc
=
0
;
xd
=
xb
;
yd
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_none
:
{
break
;
}
case
AscFormat
.
ar_oval
:
{
Ellipse2
(
graphics
,
x
,
y
,
length
*
0.5
,
width
*
0.5
,
angle
);
break
;
}
case
AscFormat
.
ar_stealth
:
{
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
length
*
0.5
;
yc
=
0
;
xd
=
xb
;
yd
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_triangle
:
{
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
}
}
function
CShapeDrawer
()
{
this
.
Shape
=
null
;
...
...
slide/Drawing/HtmlPage.js
View file @
2a3adc1c
...
...
@@ -3299,6 +3299,7 @@ function CEditorPage(api)
var
_len
=
master
.
sldLayoutLst
.
length
;
var
arr
=
new
Array
(
_len
);
var
bRedraw
=
Math
.
abs
(
this
.
m_oLayoutDrawer
.
WidthMM
-
this
.
m_oLogicDocument
.
Width
)
>
MOVE_DELTA
||
Math
.
abs
(
this
.
m_oLayoutDrawer
.
HeightMM
-
this
.
m_oLogicDocument
.
Height
)
>
MOVE_DELTA
;
for
(
var
i
=
0
;
i
<
_len
;
i
++
)
{
arr
[
i
]
=
new
CLayoutThumbnail
();
...
...
@@ -3310,7 +3311,7 @@ function CEditorPage(api)
arr
[
i
].
Name
=
master
.
sldLayoutLst
[
i
].
cSld
.
name
;
if
(
""
==
master
.
sldLayoutLst
[
i
].
ImageBase64
||
Math
.
abs
(
this
.
m_oLayoutDrawer
.
WidthMM
-
this
.
m_oLogicDocument
.
Width
)
>
MOVE_DELTA
||
Math
.
abs
(
this
.
m_oLayoutDrawer
.
HeightMM
-
this
.
m_oLogicDocument
.
Height
)
>
MOVE_DELTA
)
if
(
""
==
master
.
sldLayoutLst
[
i
].
ImageBase64
||
bRedraw
)
{
this
.
m_oLayoutDrawer
.
WidthMM
=
this
.
m_oLogicDocument
.
Width
;
this
.
m_oLayoutDrawer
.
HeightMM
=
this
.
m_oLogicDocument
.
Height
;
...
...
word/Drawing/ShapeDrawer.js
View file @
2a3adc1c
...
...
@@ -257,203 +257,6 @@ function DrawLineEnd(xEnd, yEnd, xPrev, yPrev, type, w, len, drawer, trans)
}
//рисуем конечную стрелку
function
DrawTailEnd
(
type
,
length
,
width
,
x
,
y
,
angle
,
graphics
,
array_points
)
{
var
sin
,
cos
;
sin
=
Math
.
sin
(
angle
);
cos
=
Math
.
cos
(
angle
);
switch
(
type
)
{
case
AscFormat
.
ar_arrow
:
{
var
xb
,
yb
,
xc
,
yc
;
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
ds
();
break
;
}
case
AscFormat
.
ar_diamond
:
{
var
xd
,
yd
;
xb
=-
length
*
0.5
;
yb
=-
width
*
0.5
;
xc
=-
length
;
yc
=
0
;
xd
=
xb
;
yd
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_none
:
{
break
;
}
case
AscFormat
.
ar_oval
:
{
EllipseN
(
graphics
,
x
,
y
,
length
*
0.5
,
width
*
0.5
,
angle
);
break
;
}
case
AscFormat
.
ar_stealth
:
{
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=-
length
*
0.5
;
yc
=
0
;
xd
=
xb
;
yd
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_triangle
:
{
xb
=-
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
}
}
//рисуем начальную стрелку
function
DrawHeadEnd
(
type
,
length
,
width
,
x
,
y
,
angle
,
graphics
)
{
var
sin
,
cos
;
sin
=
Math
.
sin
(
angle
);
cos
=
Math
.
cos
(
angle
);
switch
(
type
)
{
case
AscFormat
.
ar_arrow
:
{
var
xb
,
yb
,
xc
,
yc
;
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
ds
();
break
;
}
case
AscFormat
.
ar_diamond
:
{
var
xd
,
yd
;
xb
=
length
*
0.5
;
yb
=-
width
*
0.5
;
xc
=
length
;
yc
=
0
;
xd
=
xb
;
yd
=
yb
+
width
;
graphics
.
_s
();
graphics
.
_m
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
x
,
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_none
:
{
break
;
}
case
AscFormat
.
ar_oval
:
{
Ellipse2
(
graphics
,
x
,
y
,
length
*
0.5
,
width
*
0.5
,
angle
);
break
;
}
case
AscFormat
.
ar_stealth
:
{
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
length
*
0.5
;
yc
=
0
;
xd
=
xb
;
yd
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_l
(
xd
*
cos
-
yd
*
sin
+
x
,
xd
*
sin
+
yd
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
case
AscFormat
.
ar_triangle
:
{
xb
=
length
;
yb
=-
width
*
0.5
;
xc
=
xb
;
yc
=-
yb
;
graphics
.
_s
();
graphics
.
_m
(
x
,
y
);
graphics
.
_l
(
xb
*
cos
-
yb
*
sin
+
x
,
xb
*
sin
+
yb
*
cos
+
y
);
graphics
.
_l
(
xc
*
cos
-
yc
*
sin
+
x
,
xc
*
sin
+
yc
*
cos
+
y
);
graphics
.
_z
();
graphics
.
ds
();
graphics
.
df
();
break
;
}
}
}
function
CShapeDrawer
()
{
this
.
Shape
=
null
;
...
...
Write
Preview
Markdown
is supported
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