Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DMDesign
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Amanda Ghassaei
DMDesign
Commits
7edd1dcc
Commit
7edd1dcc
authored
9 years ago
by
Amanda Ghassaei
Browse files
Options
Downloads
Patches
Plain Diff
case issue
parent
1db00e97
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
js/parts/KennyTeqHighresPart.js
+0
-22
0 additions, 22 deletions
js/parts/KennyTeqHighresPart.js
with
0 additions
and
22 deletions
js/parts/KennyTeqHighresPart.js
deleted
100644 → 0
+
0
−
22
View file @
1db00e97
/**
* Created by aghassaei on 6/29/15.
*/
define
([
'
underscore
'
,
'
stlLoader
'
,
'
part
'
,
'
bin!kennyTeqPartHighResSTL
'
],
function
(
_
,
THREE
,
DMAPart
,
stl
){
var
loader
=
new
THREE
.
STLLoader
();
var
unitGeo
=
loader
.
parse
(
stl
);
var
unitScale
=
1
/
6.9597
;
unitGeo
.
applyMatrix
(
new
THREE
.
Matrix4
().
makeScale
(
unitScale
,
unitScale
,
unitScale
));
function
PartSubclass
(
type
,
parent
){
DMAPart
.
call
(
this
,
type
,
parent
);
}
PartSubclass
.
prototype
=
Object
.
create
(
DMAPart
.
prototype
);
PartSubclass
.
prototype
.
_getGeometry
=
function
(){
return
unitGeo
;
};
return
PartSubclass
;
});
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment