Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Restored original header comments and copyrights. Relicensed to LGPL2.1 #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
663 changes: 413 additions & 250 deletions LICENSE.txt

Large diffs are not rendered by default.

21 changes: 15 additions & 6 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Contents:
5.3 Recommendations
6. Compiling the Code
7. Keymap
8. Contact Information
8. Contact Information & License


1. Introduction
Expand Down Expand Up @@ -97,7 +97,7 @@ By pressing the M key, the program switches to mouse control mode. In this mode
4.2.1 Legend

The program contains a legend, which can be toggled with the L key, from where the visibility of each layer can be toggled.
Another way to show or hide layers is by pressing the control key and scrolling the mouse wheel. Scrolling up will hide the last visible layer (basically stripping away layers from the top with each click) and scrolling down will un-hide the last hidden layer. By using the alt instead of the control key, the same procedure can be used, except it will start from the bottom up.
Another way to show or hide layers is by pressing the control key and scrolling the mouse wheel. Scrolling up will hide the last visible layer (basically stripping away layers from the top with each click ) and scrolling down will un-hide the last hidden layer. By using the alt instead of the control key, the same procedure can be used, except it will start from the bottom up.
The third and final way in which the user can toggle layer visibility if by using shortkeys defined in the process definition file.

4.2.2 Rulers
Expand Down Expand Up @@ -233,11 +233,20 @@ Wheel Up/Down: Move Up/Down
<Ctrl> Wheel Up: Hide Last Visible Layer / Change Ruler Layer
<Ctrl> Wheel Down: Show Last Invisible Layer / Change Ruler Layer

8. Contact Information
8. Contact Information & License

If you are having difficulties running this program, don't hesitate to contact us for free support through the SourceForge website:
GDS3D is created by Jasper Velner and Michiel Soer, from the Integrated Circuit Design Group of the University of Twente.
http://www.icd.el.utwente.nl/

GDS3D is hosted at SourceForge, but no longer actively maintained by us.
http://sourceforge.net/projects/gds3d/

Jasper Velner
Michiel Soer
GDS3D is based on the gds2pov project by Roger Light.
http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov

GDS3D uses a math library copyright (c) 2006, Paul Baker.
All rights reserved.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


GDS3D is free software, licensed under the GNU Lesser General Public License 2.1
37 changes: 23 additions & 14 deletions gdsoglviewer/gdsobject_ogl.cpp
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
/*
* File: gdsobject_ogl.cpp
* Author: Roger Light
* Project: gdsto3d
*
* This is the OpenGL viewer specific implementation of the GDSObject class.
*
* This program 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 2.1 of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/


#ifdef WIN32
Expand Down
36 changes: 22 additions & 14 deletions gdsoglviewer/gdsobject_ogl.h
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
/*
* File: gdsobject_ogl.h
* Author: Roger Light
* Project: gdsto3d
*

* This program 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 2.1 of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef __GDSOBJECT_OGL_H__
#define __GDSOBJECT_OGL_H__
Expand Down
37 changes: 23 additions & 14 deletions gdsoglviewer/gdsparse_ogl.cpp
Original file line number Diff line number Diff line change
@@ -1,22 +1,31 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
/*
* File: gdsparse_ogl.cpp
* Author: Roger Light
* Project: gdsto3d
*
* This is the OpenGL viewer specific implementation of the GDSParse class.
*
* This program 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 2.1 of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "windowmanager.h"
#include "gdsparse_ogl.h"
Expand Down
36 changes: 22 additions & 14 deletions gdsoglviewer/gdsparse_ogl.h
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
/*
* File: gdsparse_ogl.h
* Author: Roger Light
* Project: gdsto3d
*

* This program 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 2.1 of the License, or (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef __GDSPARSE_OGL_H__
#define __GDSPARSE_OGL_H__
Expand Down
25 changes: 13 additions & 12 deletions gdsoglviewer/key_list.h
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 2.1 of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
// 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 this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#ifndef __KEYLIST_H__
#define __KEYLIST_H__
Expand Down
25 changes: 13 additions & 12 deletions gdsoglviewer/listview.cpp
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 2.1 of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
// 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 this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#include "gds_globals.h"
#include "listview.h"
Expand Down
25 changes: 13 additions & 12 deletions gdsoglviewer/listview.h
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 2.1 of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
// 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 this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#ifndef _listview_H
#define _listview_H
Expand Down
26 changes: 13 additions & 13 deletions gdsoglviewer/renderer.cpp
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
// GDS3D, a program for viewing GDSII files in 3D.
// Created by Jasper Velner and Michiel Soer, http://icd.el.utwente.nl
// Based on code by Roger Light, http://atchoo.org/gds2pov/
//
// Copyright (C) 2013 IC-Design Group, University of Twente.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
// Based on gds2pov by Roger Light, http://atchoo.org/gds2pov/ / https://github.com/ralight/gds2pov
// Copyright (C) 2004-2008 by Roger Light
//
// This program 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 2.1 of the License, or (at your option) any later version.
//
// This program 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA

// 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 this program; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

// Headers of OpenGL extension mechanism
#ifdef __APPLE__
Expand Down
Loading