Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Amanda Ghassaei
OrigamiSimulator
Commits
9d6ed753
Commit
9d6ed753
authored
Jun 03, 2017
by
amandaghassaei
Browse files
polygons
parent
6e8eb7ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
js/pattern.js
View file @
9d6ed753
...
...
@@ -81,6 +81,8 @@ function initPattern(globals){
$lines
.
css
({
fill
:
"
none
"
,
'
stroke-dasharray
'
:
"
none
"
});
var
$rects
=
_$svg
.
children
(
"
rect
"
);
$rects
.
css
({
fill
:
"
none
"
,
'
stroke-dasharray
'
:
"
none
"
});
var
$polygons
=
_$svg
.
children
(
"
polygon
"
);
$polygons
.
css
({
fill
:
"
none
"
,
'
stroke-dasharray
'
:
"
none
"
});
var
_verticesRaw
=
[];
var
_mountainsRaw
=
[];
...
...
@@ -89,11 +91,11 @@ function initPattern(globals){
var
_cutsRaw
=
[];
var
_triangulationsRaw
=
[];
findType
(
_verticesRaw
,
_outlinesRaw
,
outlineFilter
,
$paths
,
$lines
,
$rects
);
findType
(
_verticesRaw
,
_mountainsRaw
,
mountainFilter
,
$paths
,
$lines
,
$rects
);
findType
(
_verticesRaw
,
_valleysRaw
,
valleyFilter
,
$paths
,
$lines
,
$rects
);
findType
(
_verticesRaw
,
_cutsRaw
,
cutFilter
,
$paths
,
$lines
,
$rects
);
findType
(
_verticesRaw
,
_triangulationsRaw
,
triangulationFilter
,
$paths
,
$lines
,
$rects
);
findType
(
_verticesRaw
,
_outlinesRaw
,
outlineFilter
,
$paths
,
$lines
,
$rects
,
$polygons
);
findType
(
_verticesRaw
,
_mountainsRaw
,
mountainFilter
,
$paths
,
$lines
,
$rects
,
$polygons
);
findType
(
_verticesRaw
,
_valleysRaw
,
valleyFilter
,
$paths
,
$lines
,
$rects
,
$polygons
);
findType
(
_verticesRaw
,
_cutsRaw
,
cutFilter
,
$paths
,
$lines
,
$rects
,
$polygons
);
findType
(
_verticesRaw
,
_triangulationsRaw
,
triangulationFilter
,
$paths
,
$lines
,
$rects
,
$polygons
);
parseSVG
(
_verticesRaw
,
_outlinesRaw
,
_mountainsRaw
,
_valleysRaw
,
_cutsRaw
,
_triangulationsRaw
);
...
...
@@ -122,6 +124,7 @@ function initPattern(globals){
$svg
.
append
(
$paths
);
$svg
.
append
(
$lines
);
$svg
.
append
(
$rects
);
$svg
.
append
(
$polygons
);
$
(
"
#svgViewer
"
).
html
(
$svg
);
...
...
@@ -133,10 +136,11 @@ function initPattern(globals){
});
}
function
findType
(
_verticesRaw
,
_segmentsRaw
,
filter
,
$paths
,
$lines
,
$rects
){
function
findType
(
_verticesRaw
,
_segmentsRaw
,
filter
,
$paths
,
$lines
,
$rects
,
$polygons
){
parsePath
(
_verticesRaw
,
_segmentsRaw
,
$paths
.
filter
(
filter
));
parseLine
(
_verticesRaw
,
_segmentsRaw
,
$lines
.
filter
(
filter
));
parseRect
(
_verticesRaw
,
_segmentsRaw
,
$rects
.
filter
(
filter
));
parsePolygon
(
_verticesRaw
,
_segmentsRaw
,
$polygons
.
filter
(
filter
));
}
function
applyTransformation
(
vertex
,
transformations
){
...
...
@@ -279,9 +283,22 @@ function initPattern(globals){
}
}
function
parseSVG
(
_verticesRaw
,
_outlinesRaw
,
_mountainsRaw
,
_valleysRaw
,
_cutsRaw
,
_triangulationsRaw
){
function
parsePolygon
(
_verticesRaw
,
_segmentsRaw
,
$elements
){
for
(
var
i
=
0
;
i
<
$elements
.
length
;
i
++
){
var
element
=
$elements
[
i
];
for
(
var
j
=
0
;
j
<
element
.
points
.
length
;
j
++
){
_verticesRaw
.
push
(
new
THREE
.
Vector3
(
element
.
points
[
j
].
x
,
0
,
element
.
points
[
j
].
y
));
applyTransformation
(
_verticesRaw
[
_verticesRaw
.
length
-
1
],
element
.
transform
);
if
(
j
<
element
.
points
.
length
-
1
)
_segmentsRaw
.
push
([
_verticesRaw
.
length
-
1
,
_verticesRaw
.
length
]);
else
_segmentsRaw
.
push
([
_verticesRaw
.
length
-
1
,
_verticesRaw
.
length
-
element
.
points
.
length
]);
if
(
element
.
targetAngle
)
_segmentsRaw
[
_segmentsRaw
.
length
-
1
].
push
(
element
.
targetAngle
);
}
}
}
function
parseSVG
(
_verticesRaw
,
_outlinesRaw
,
_mountainsRaw
,
_valleysRaw
,
_cutsRaw
,
_triangulationsRaw
){
findIntersections
(
_verticesRaw
,
_outlinesRaw
,
_mountainsRaw
,
_valleysRaw
,
_cutsRaw
,
_triangulationsRaw
);
verticesRaw
=
_verticesRaw
;
...
...
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