From 6bdaf024d2c569a6044f622aa4e999201d7ac3eb Mon Sep 17 00:00:00 2001 From: Thomas Oster <thomas.oster@rwth-aachen.de> Date: Thu, 21 Feb 2013 08:25:49 +0100 Subject: [PATCH] Fixed Copyright information --- .../t_oster/liblasercut/BlackWhiteRaster.java | 16 +++++----- src/com/t_oster/liblasercut/Customizable.java | 20 ++++++++++++- ...FloatPowerSpeedFocusFrequencyProperty.java | 18 ++++++------ .../t_oster/liblasercut/GreyscaleRaster.java | 20 ++++++------- .../liblasercut/IllegalJobException.java | 16 +++++----- src/com/t_oster/liblasercut/JobPart.java | 17 ++++++----- src/com/t_oster/liblasercut/LaserCutter.java | 16 +++++----- src/com/t_oster/liblasercut/LaserJob.java | 10 +++---- .../t_oster/liblasercut/LaserProperty.java | 18 ++++++------ src/com/t_oster/liblasercut/LibInfo.java | 16 +++++----- .../PowerSpeedFocusFrequencyProperty.java | 18 ++++++------ .../liblasercut/PowerSpeedFocusProperty.java | 18 ++++++------ .../t_oster/liblasercut/ProgressListener.java | 18 ++++++------ src/com/t_oster/liblasercut/Raster3dPart.java | 28 +++++++++--------- src/com/t_oster/liblasercut/RasterPart.java | 10 +++---- .../liblasercut/TimeIntensiveOperation.java | 28 +++++++++--------- .../t_oster/liblasercut/VectorCommand.java | 10 +++---- src/com/t_oster/liblasercut/VectorPart.java | 10 +++---- .../liblasercut/dithering/Average.java | 10 +++---- .../dithering/DitheringAlgorithm.java | 10 +++---- .../liblasercut/dithering/FloydSteinberg.java | 10 +++---- .../t_oster/liblasercut/dithering/Grid.java | 28 +++++++++--------- .../liblasercut/dithering/Ordered.java | 10 +++---- .../t_oster/liblasercut/dithering/Random.java | 10 +++---- .../t_oster/liblasercut/drivers/Dummy.java | 29 +++++++++---------- .../liblasercut/drivers/EpilogCutter.java | 10 +++---- .../liblasercut/drivers/EpilogHelix.java | 16 +++++----- .../liblasercut/drivers/EpilogZing.java | 16 +++++----- .../liblasercut/drivers/LaosCutter.java | 10 +++---- .../drivers/LaosCutterProperty.java | 16 +++++----- .../liblasercut/drivers/Lasersaur.java | 28 +++++++++--------- .../liblasercut/examples/PhotoPrint.java | 18 ++++++------ .../t_oster/liblasercut/platform/Point.java | 18 ++++++------ .../liblasercut/platform/Rectangle.java | 13 +++++---- .../t_oster/liblasercut/platform/Tuple.java | 16 +++++----- .../t_oster/liblasercut/platform/Util.java | 10 +++---- .../utils/BufferedImageAdapter.java | 16 +++++----- .../liblasercut/utils/ShapeConverter.java | 18 ++++++------ .../liblasercut/utils/ShapeRecognizer.java | 16 +++++----- .../liblasercut/utils/VectorOptimizer.java | 18 ++++++++++++ 40 files changed, 346 insertions(+), 307 deletions(-) diff --git a/src/com/t_oster/liblasercut/BlackWhiteRaster.java b/src/com/t_oster/liblasercut/BlackWhiteRaster.java index 1e3997f..4ae261a 100644 --- a/src/com/t_oster/liblasercut/BlackWhiteRaster.java +++ b/src/com/t_oster/liblasercut/BlackWhiteRaster.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; diff --git a/src/com/t_oster/liblasercut/Customizable.java b/src/com/t_oster/liblasercut/Customizable.java index 7391c2e..38e87c5 100644 --- a/src/com/t_oster/liblasercut/Customizable.java +++ b/src/com/t_oster/liblasercut/Customizable.java @@ -1,8 +1,26 @@ +/** + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany + * + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut; /** * - * @author thommy + * @author Thomas Oster <thomas.oster@rwth-aachen.de> */ public interface Customizable { public String[] getPropertyKeys(); diff --git a/src/com/t_oster/liblasercut/FloatPowerSpeedFocusFrequencyProperty.java b/src/com/t_oster/liblasercut/FloatPowerSpeedFocusFrequencyProperty.java index ee699b3..6ae441d 100644 --- a/src/com/t_oster/liblasercut/FloatPowerSpeedFocusFrequencyProperty.java +++ b/src/com/t_oster/liblasercut/FloatPowerSpeedFocusFrequencyProperty.java @@ -1,27 +1,27 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; /** * The LaserProperty holds all the parameters for parts of the LaserJob. * The Frequency value is ignored for Engraving operations - * + * * @author oster */ public class FloatPowerSpeedFocusFrequencyProperty implements LaserProperty diff --git a/src/com/t_oster/liblasercut/GreyscaleRaster.java b/src/com/t_oster/liblasercut/GreyscaleRaster.java index 40fc95c..81fff5e 100644 --- a/src/com/t_oster/liblasercut/GreyscaleRaster.java +++ b/src/com/t_oster/liblasercut/GreyscaleRaster.java @@ -1,33 +1,33 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; /** * This class represents a defined Raster of greyscale pixels * which means it can be seen as 2 dimensional array of bytes. - * + * * It has a subset of the routines of the java.awt.BufferedImage * so this could easy be used with an adapter. * It was chosen to use this Interface rather than the BufferdImage * because there are some plattfroms (ie Android) where BufferedImage * is not available but other Image classes which can be used. - * + * * @author Thomas Oster <thomas.oster@rwth-aachen.de> */ public interface GreyscaleRaster diff --git a/src/com/t_oster/liblasercut/IllegalJobException.java b/src/com/t_oster/liblasercut/IllegalJobException.java index f3717a8..a41fcfa 100644 --- a/src/com/t_oster/liblasercut/IllegalJobException.java +++ b/src/com/t_oster/liblasercut/IllegalJobException.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/JobPart.java b/src/com/t_oster/liblasercut/JobPart.java index 96561eb..fb19ef2 100644 --- a/src/com/t_oster/liblasercut/JobPart.java +++ b/src/com/t_oster/liblasercut/JobPart.java @@ -1,21 +1,22 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ + package com.t_oster.liblasercut; /** diff --git a/src/com/t_oster/liblasercut/LaserCutter.java b/src/com/t_oster/liblasercut/LaserCutter.java index a62f825..9414f14 100644 --- a/src/com/t_oster/liblasercut/LaserCutter.java +++ b/src/com/t_oster/liblasercut/LaserCutter.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/LaserJob.java b/src/com/t_oster/liblasercut/LaserJob.java index 6123e06..59869b6 100644 --- a/src/com/t_oster/liblasercut/LaserJob.java +++ b/src/com/t_oster/liblasercut/LaserJob.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/LaserProperty.java b/src/com/t_oster/liblasercut/LaserProperty.java index 794c13c..7a00597 100644 --- a/src/com/t_oster/liblasercut/LaserProperty.java +++ b/src/com/t_oster/liblasercut/LaserProperty.java @@ -1,27 +1,27 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; /** * The LaserProperty holds all the parameters for parts of the LaserJob. * The Frequency value is ignored for Engraving operations - * + * * @author oster */ public interface LaserProperty extends Cloneable, Customizable diff --git a/src/com/t_oster/liblasercut/LibInfo.java b/src/com/t_oster/liblasercut/LibInfo.java index d0c26bb..0d6b763 100644 --- a/src/com/t_oster/liblasercut/LibInfo.java +++ b/src/com/t_oster/liblasercut/LibInfo.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; diff --git a/src/com/t_oster/liblasercut/PowerSpeedFocusFrequencyProperty.java b/src/com/t_oster/liblasercut/PowerSpeedFocusFrequencyProperty.java index 356e468..f612c46 100644 --- a/src/com/t_oster/liblasercut/PowerSpeedFocusFrequencyProperty.java +++ b/src/com/t_oster/liblasercut/PowerSpeedFocusFrequencyProperty.java @@ -1,27 +1,27 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; /** * The LaserProperty holds all the parameters for parts of the LaserJob. * The Frequency value is ignored for Engraving operations - * + * * @author oster */ public class PowerSpeedFocusFrequencyProperty extends PowerSpeedFocusProperty diff --git a/src/com/t_oster/liblasercut/PowerSpeedFocusProperty.java b/src/com/t_oster/liblasercut/PowerSpeedFocusProperty.java index 94e3426..841301e 100644 --- a/src/com/t_oster/liblasercut/PowerSpeedFocusProperty.java +++ b/src/com/t_oster/liblasercut/PowerSpeedFocusProperty.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; @@ -24,7 +24,7 @@ import java.util.Collection; /** * The LaserProperty holds all the parameters for parts of the LaserJob. * The Frequency value is ignored for Engraving operations - * + * * @author oster */ public class PowerSpeedFocusProperty implements LaserProperty diff --git a/src/com/t_oster/liblasercut/ProgressListener.java b/src/com/t_oster/liblasercut/ProgressListener.java index d48d3bd..e54b49e 100644 --- a/src/com/t_oster/liblasercut/ProgressListener.java +++ b/src/com/t_oster/liblasercut/ProgressListener.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; @@ -22,7 +22,7 @@ package com.t_oster.liblasercut; * This Interface represents a listener * for progress of * Operations which require much time - * + * * @author Thomas Oster <thomas.oster@rwth-aachen.de> */ public interface ProgressListener diff --git a/src/com/t_oster/liblasercut/Raster3dPart.java b/src/com/t_oster/liblasercut/Raster3dPart.java index 4668818..090bb9f 100644 --- a/src/com/t_oster/liblasercut/Raster3dPart.java +++ b/src/com/t_oster/liblasercut/Raster3dPart.java @@ -1,21 +1,21 @@ /** - * This file is part of VisiCut. Copyright (C) 2012 Thomas Oster - * <thomas.oster@rwth-aachen.de> RWTH Aachen University - 52062 Aachen, Germany + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify it under the - * terms of the GNU Lesser General Public License as published by the Free - * Software Foundation, either version 3 of the License, or (at your option) any - * later version. + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more - * details. + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. - * - */ + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut; import com.t_oster.liblasercut.platform.Point; diff --git a/src/com/t_oster/liblasercut/RasterPart.java b/src/com/t_oster/liblasercut/RasterPart.java index 893c2c7..eca54f4 100644 --- a/src/com/t_oster/liblasercut/RasterPart.java +++ b/src/com/t_oster/liblasercut/RasterPart.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; diff --git a/src/com/t_oster/liblasercut/TimeIntensiveOperation.java b/src/com/t_oster/liblasercut/TimeIntensiveOperation.java index 102e14d..59196bf 100644 --- a/src/com/t_oster/liblasercut/TimeIntensiveOperation.java +++ b/src/com/t_oster/liblasercut/TimeIntensiveOperation.java @@ -1,21 +1,21 @@ /** - * This file is part of VisiCut. Copyright (C) 2012 Thomas Oster - * <thomas.oster@rwth-aachen.de> RWTH Aachen University - 52062 Aachen, Germany + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify it under the - * terms of the GNU Lesser General Public License as published by the Free - * Software Foundation, either version 3 of the License, or (at your option) any - * later version. + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more - * details. + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. - * - */ + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut; import java.util.LinkedList; diff --git a/src/com/t_oster/liblasercut/VectorCommand.java b/src/com/t_oster/liblasercut/VectorCommand.java index e740eab..b13deb9 100644 --- a/src/com/t_oster/liblasercut/VectorCommand.java +++ b/src/com/t_oster/liblasercut/VectorCommand.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/VectorPart.java b/src/com/t_oster/liblasercut/VectorPart.java index f12dd0f..4fdea67 100644 --- a/src/com/t_oster/liblasercut/VectorPart.java +++ b/src/com/t_oster/liblasercut/VectorPart.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut; diff --git a/src/com/t_oster/liblasercut/dithering/Average.java b/src/com/t_oster/liblasercut/dithering/Average.java index 1a9adc2..2e52e0f 100644 --- a/src/com/t_oster/liblasercut/dithering/Average.java +++ b/src/com/t_oster/liblasercut/dithering/Average.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.dithering; diff --git a/src/com/t_oster/liblasercut/dithering/DitheringAlgorithm.java b/src/com/t_oster/liblasercut/dithering/DitheringAlgorithm.java index e1e7652..debb728 100644 --- a/src/com/t_oster/liblasercut/dithering/DitheringAlgorithm.java +++ b/src/com/t_oster/liblasercut/dithering/DitheringAlgorithm.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.dithering; diff --git a/src/com/t_oster/liblasercut/dithering/FloydSteinberg.java b/src/com/t_oster/liblasercut/dithering/FloydSteinberg.java index 538553b..138f9be 100644 --- a/src/com/t_oster/liblasercut/dithering/FloydSteinberg.java +++ b/src/com/t_oster/liblasercut/dithering/FloydSteinberg.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.dithering; diff --git a/src/com/t_oster/liblasercut/dithering/Grid.java b/src/com/t_oster/liblasercut/dithering/Grid.java index b6d6968..90da69e 100644 --- a/src/com/t_oster/liblasercut/dithering/Grid.java +++ b/src/com/t_oster/liblasercut/dithering/Grid.java @@ -1,21 +1,21 @@ /** - * This file is part of VisiCut. Copyright (C) 2012 Thomas Oster - * <thomas.oster@rwth-aachen.de> RWTH Aachen University - 52062 Aachen, Germany + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify it under the - * terms of the GNU Lesser General Public License as published by the Free - * Software Foundation, either version 3 of the License, or (at your option) any - * later version. + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more - * details. + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. - * - */ + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut.dithering; import com.t_oster.liblasercut.BlackWhiteRaster; diff --git a/src/com/t_oster/liblasercut/dithering/Ordered.java b/src/com/t_oster/liblasercut/dithering/Ordered.java index 9c6b7c1..3081eda 100644 --- a/src/com/t_oster/liblasercut/dithering/Ordered.java +++ b/src/com/t_oster/liblasercut/dithering/Ordered.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.dithering; diff --git a/src/com/t_oster/liblasercut/dithering/Random.java b/src/com/t_oster/liblasercut/dithering/Random.java index b7fa034..ce6b4d6 100644 --- a/src/com/t_oster/liblasercut/dithering/Random.java +++ b/src/com/t_oster/liblasercut/dithering/Random.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.dithering; diff --git a/src/com/t_oster/liblasercut/drivers/Dummy.java b/src/com/t_oster/liblasercut/drivers/Dummy.java index e0a3c0d..eff14c8 100644 --- a/src/com/t_oster/liblasercut/drivers/Dummy.java +++ b/src/com/t_oster/liblasercut/drivers/Dummy.java @@ -1,22 +1,21 @@ /** - * This file is part of VisiCut. Copyright (C) 2012 Thomas Oster - * <thomas.oster@rwth-aachen.de> RWTH Aachen University - 52062 Aachen, Germany - * and others. + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify it under the - * terms of the GNU Lesser General Public License as published by the Free - * Software Foundation, either version 3 of the License, or (at your option) any - * later version. + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more - * details. + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. - * - */ + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut.drivers; import com.t_oster.liblasercut.*; diff --git a/src/com/t_oster/liblasercut/drivers/EpilogCutter.java b/src/com/t_oster/liblasercut/drivers/EpilogCutter.java index dd4f672..b491341 100644 --- a/src/com/t_oster/liblasercut/drivers/EpilogCutter.java +++ b/src/com/t_oster/liblasercut/drivers/EpilogCutter.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /** * Known Limitations: diff --git a/src/com/t_oster/liblasercut/drivers/EpilogHelix.java b/src/com/t_oster/liblasercut/drivers/EpilogHelix.java index 8cf2f68..708413d 100644 --- a/src/com/t_oster/liblasercut/drivers/EpilogHelix.java +++ b/src/com/t_oster/liblasercut/drivers/EpilogHelix.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /** * Known Limitations: diff --git a/src/com/t_oster/liblasercut/drivers/EpilogZing.java b/src/com/t_oster/liblasercut/drivers/EpilogZing.java index 12e17a6..d0f17f9 100644 --- a/src/com/t_oster/liblasercut/drivers/EpilogZing.java +++ b/src/com/t_oster/liblasercut/drivers/EpilogZing.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /** * Known Limitations: diff --git a/src/com/t_oster/liblasercut/drivers/LaosCutter.java b/src/com/t_oster/liblasercut/drivers/LaosCutter.java index 41d59dc..8a07575 100644 --- a/src/com/t_oster/liblasercut/drivers/LaosCutter.java +++ b/src/com/t_oster/liblasercut/drivers/LaosCutter.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.drivers; diff --git a/src/com/t_oster/liblasercut/drivers/LaosCutterProperty.java b/src/com/t_oster/liblasercut/drivers/LaosCutterProperty.java index 072a4f4..518e2dd 100644 --- a/src/com/t_oster/liblasercut/drivers/LaosCutterProperty.java +++ b/src/com/t_oster/liblasercut/drivers/LaosCutterProperty.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.drivers; diff --git a/src/com/t_oster/liblasercut/drivers/Lasersaur.java b/src/com/t_oster/liblasercut/drivers/Lasersaur.java index 38cb55b..119e8a3 100644 --- a/src/com/t_oster/liblasercut/drivers/Lasersaur.java +++ b/src/com/t_oster/liblasercut/drivers/Lasersaur.java @@ -1,21 +1,21 @@ /** - * This file is part of VisiCut. Copyright (C) 2012 Thomas Oster - * <thomas.oster@rwth-aachen.de> RWTH Aachen University - 52062 Aachen, Germany + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify it under the - * terms of the GNU Lesser General Public License as published by the Free - * Software Foundation, either version 3 of the License, or (at your option) any - * later version. + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more - * details. + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. * - * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. - * - */ + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut.drivers; import com.t_oster.liblasercut.*; diff --git a/src/com/t_oster/liblasercut/examples/PhotoPrint.java b/src/com/t_oster/liblasercut/examples/PhotoPrint.java index 7e2fe17..60ea6f5 100644 --- a/src/com/t_oster/liblasercut/examples/PhotoPrint.java +++ b/src/com/t_oster/liblasercut/examples/PhotoPrint.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.examples; @@ -56,7 +56,7 @@ import javax.swing.event.ChangeListener; * This is an example app which lets you select an Image File, * dither algorithm and target size to raster the image in normal raster * mode - * + * * PLEASE NOTE THAT THIS FILE IS CURRENTLY NOT WORKING DUE TO CHANGES IN THE LIBRARY * SINCE THIS WAS ONLY A DEMONSTRATION AND NOT PART OF THE LIBRARY OR VISICUT * IT IS CURRENTLY UNMAINTAINED diff --git a/src/com/t_oster/liblasercut/platform/Point.java b/src/com/t_oster/liblasercut/platform/Point.java index db39f97..f6aeff4 100644 --- a/src/com/t_oster/liblasercut/platform/Point.java +++ b/src/com/t_oster/liblasercut/platform/Point.java @@ -1,27 +1,27 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.platform; /** * This Class is the replacement of the java.awt.Point and android.graphics.Point * because the library wants to run on both platforms without modification - * + * * @author Thomas Oster <thomas.oster@rwth-aachen.de> */ public class Point diff --git a/src/com/t_oster/liblasercut/platform/Rectangle.java b/src/com/t_oster/liblasercut/platform/Rectangle.java index 5724461..de987f6 100644 --- a/src/com/t_oster/liblasercut/platform/Rectangle.java +++ b/src/com/t_oster/liblasercut/platform/Rectangle.java @@ -1,23 +1,26 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Max Gaukler <development@maxgaukler.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.platform; /** + * @author Max Gaukler <development@maxgaukler.de> + * * (not really compatible) replacement of java.awt.Rectangle, * This Rectangle cannot be "empty" - at minimum it needs to have one point. * diff --git a/src/com/t_oster/liblasercut/platform/Tuple.java b/src/com/t_oster/liblasercut/platform/Tuple.java index e2ab5f2..2a79530 100644 --- a/src/com/t_oster/liblasercut/platform/Tuple.java +++ b/src/com/t_oster/liblasercut/platform/Tuple.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/platform/Util.java b/src/com/t_oster/liblasercut/platform/Util.java index 3ef85d6..491215f 100644 --- a/src/com/t_oster/liblasercut/platform/Util.java +++ b/src/com/t_oster/liblasercut/platform/Util.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany * - * VisiCut is free software: you can redistribute it and/or modify + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * VisiCut is distributed in the hope that it will be useful, + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/utils/BufferedImageAdapter.java b/src/com/t_oster/liblasercut/utils/BufferedImageAdapter.java index 28039a9..ff3687b 100644 --- a/src/com/t_oster/liblasercut/utils/BufferedImageAdapter.java +++ b/src/com/t_oster/liblasercut/utils/BufferedImageAdapter.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/utils/ShapeConverter.java b/src/com/t_oster/liblasercut/utils/ShapeConverter.java index 96971fb..50755c9 100644 --- a/src/com/t_oster/liblasercut/utils/ShapeConverter.java +++ b/src/com/t_oster/liblasercut/utils/ShapeConverter.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ package com.t_oster.liblasercut.utils; @@ -27,7 +27,7 @@ import java.awt.geom.PathIterator; * This class makes it possible to add java.awt.Shape Objects * to a VectorPart. The Shape will be converted to moveto and lineto * commands fitting as close as possible - * + * * @author Thomas Oster <thomas.oster@rwth-aachen.de> */ public class ShapeConverter diff --git a/src/com/t_oster/liblasercut/utils/ShapeRecognizer.java b/src/com/t_oster/liblasercut/utils/ShapeRecognizer.java index aaa0cf2..53d9f8a 100644 --- a/src/com/t_oster/liblasercut/utils/ShapeRecognizer.java +++ b/src/com/t_oster/liblasercut/utils/ShapeRecognizer.java @@ -1,20 +1,20 @@ /** - * This file is part of VisiCut. - * Copyright (C) 2012 Thomas Oster <thomas.oster@rwth-aachen.de> + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> * RWTH Aachen University - 52062 Aachen, Germany - * - * VisiCut is free software: you can redistribute it and/or modify + * + * LibLaserCut is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. - * - * VisiCut is distributed in the hope that it will be useful, + * + * LibLaserCut is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. - * + * * You should have received a copy of the GNU Lesser General Public License - * along with VisiCut. If not, see <http://www.gnu.org/licenses/>. + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. **/ /* * To change this template, choose Tools | Templates diff --git a/src/com/t_oster/liblasercut/utils/VectorOptimizer.java b/src/com/t_oster/liblasercut/utils/VectorOptimizer.java index 7a99999..5dd7807 100644 --- a/src/com/t_oster/liblasercut/utils/VectorOptimizer.java +++ b/src/com/t_oster/liblasercut/utils/VectorOptimizer.java @@ -1,3 +1,21 @@ +/** + * This file is part of LibLaserCut. + * Copyright (C) 2011 - 2013 Thomas Oster <thomas.oster@rwth-aachen.de> + * RWTH Aachen University - 52062 Aachen, Germany + * + * LibLaserCut is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * LibLaserCut is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with LibLaserCut. If not, see <http://www.gnu.org/licenses/>. + **/ package com.t_oster.liblasercut.utils; import com.t_oster.liblasercut.LaserProperty; -- GitLab