~ubuntu-branches/ubuntu/utopic/gnome-chemistry-utils/utopic-proposed

« back to all changes in this revision

Viewing changes to libs/gccv/wedge.h

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-05-10 21:30:51 UTC
  • mfrom: (1.1.15) (2.1.25 sid)
  • Revision ID: package-import@ubuntu.com-20130510213051-mswxsp3vitsgqspm
Tags: 0.14.2-1ubuntu1
* Sync with Debian. Remaining change:
  - Build-depend on firefox-dev instead of xulrunner-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// -*- C++ -*-
2
2
 
3
 
/* 
 
3
/*
4
4
 * Gnome Chemistry Utils
5
 
 * gccv/wedge.h 
6
 
 *
7
 
 * Copyright (C) 2008-2010 Jean Bréfort <jean.brefort@normalesup.org>
8
 
 *
9
 
 * This program is free software; you can redistribute it and/or 
10
 
 * modify it under the terms of the GNU General Public License as 
11
 
 * published by the Free Software Foundation; either version 2 of the
 
5
 * gccv/wedge.h
 
6
 *
 
7
 * Copyright (C) 2008-2012 Jean Bréfort <jean.brefort@normalesup.org>
 
8
 *
 
9
 * This program is free software; you can redistribute it and/or
 
10
 * modify it under the terms of the GNU General Public License as
 
11
 * published by the Free Software Foundation; either version 3 of the
12
12
 * License, or (at your option) any later version.
13
13
 *
14
14
 * This program is distributed in the hope that it will be useful,
110
110
 
111
111
protected:
112
112
/*!
 
113
The horizontal start position.
113
114
*/
114
115
        double m_xstart;
115
116
/*!
 
117
The vertical start position.
116
118
*/
117
119
        double m_ystart;
118
120
/*!
 
121
The horizontal central end position.
119
122
*/
120
123
        double m_xend;
121
124
/*!
 
125
The vertical central end position.
122
126
*/
123
127
        double m_yend;
124
128
/*!
 
129
The horizontal position of the first corner at end position. This value is
 
130
automatically set and should not be changed by code external to this class.
125
131
*/
126
132
        double m_xe1;
127
133
/*!
 
134
The vertical position of the first corner at end position. This value is
 
135
automatically set and should not be changed by code external to this class.
128
136
*/
129
137
        double m_ye1;
130
138
/*!
 
139
The horizontal position of the second corner at end position. This value is
 
140
automatically set and should not be changed by code external to this class.
131
141
*/
132
142
        double m_xe2;
133
143
/*!
 
144
The vertical position of the second corner at end position. This value is
 
145
automatically set and should not be changed by code external to this class.
134
146
*/
135
147
        double m_ye2;
136
148