Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibLaserCut
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Elektronikföreningen Admittansen
LibLaserCut
Commits
cf4e9bac
Commit
cf4e9bac
authored
11 years ago
by
Thomas Oster
Browse files
Options
Downloads
Patches
Plain Diff
Fix: engrave stuff...
parent
047c7987
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/com/t_oster/liblasercut/drivers/IModelaMill.java
+1
-2
1 addition, 2 deletions
src/com/t_oster/liblasercut/drivers/IModelaMill.java
with
1 addition
and
2 deletions
src/com/t_oster/liblasercut/drivers/IModelaMill.java
+
1
−
2
View file @
cf4e9bac
...
...
@@ -176,13 +176,12 @@ public class IModelaMill extends LaserCutter
*/
private
double
getBlackPercent
(
RasterPart
p
,
int
cx
,
int
cy
,
int
toolDiameter
)
{
double
count
=
0
;
double
count
=
toolDiameter
*
toolDiameter
;
double
black
=
0
;
for
(
int
x
=
Math
.
max
(
cx
-
toolDiameter
/
2
,
0
);
x
<
Math
.
min
(
cx
+
toolDiameter
/
2
,
p
.
getRasterWidth
());
x
++)
{
for
(
int
y
=
Math
.
max
(
cy
-
toolDiameter
/
2
,
0
);
y
<
Math
.
min
(
cy
+
toolDiameter
/
2
,
p
.
getRasterHeight
());
y
++)
{
count
++;
if
(
p
.
isBlack
(
x
,
y
))
{
black
++;
...
...
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