summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2015-08-26 20:09:46 +0000
committerJabiertxof <jtx@jtx.marker.es>2015-08-26 20:09:46 +0000
commitbe65fc811e309e3a126f272601c3cb7997ef465e (patch)
tree77e63c3b149a81cf61f1214d1906d3dbb26a9fe6 /src
parentupdate to trunk (diff)
downloadinkscape-be65fc811e309e3a126f272601c3cb7997ef465e.tar.gz
inkscape-be65fc811e309e3a126f272601c3cb7997ef465e.zip
astyle code
(bzr r13645.1.116)
Diffstat (limited to 'src')
-rw-r--r--src/helper/geom-pointwise.cpp2
-rw-r--r--src/helper/geom-satellite.cpp16
2 files changed, 9 insertions, 9 deletions
diff --git a/src/helper/geom-pointwise.cpp b/src/helper/geom-pointwise.cpp
index 9aa90df01..7074761da 100644
--- a/src/helper/geom-pointwise.cpp
+++ b/src/helper/geom-pointwise.cpp
@@ -47,7 +47,7 @@ void Pointwise::setStart()
}
int index = 0;
for (Geom::Path::const_iterator curve_it = path_it->begin();
- curve_it != path_it->end(); ++curve_it) {
+ curve_it != path_it->end(); ++curve_it) {
if(index == 0) {
if (!path_it->closed()) {
_satellites[counter].hidden = true;
diff --git a/src/helper/geom-satellite.cpp b/src/helper/geom-satellite.cpp
index 547caf539..615106dd9 100644
--- a/src/helper/geom-satellite.cpp
+++ b/src/helper/geom-satellite.cpp
@@ -31,13 +31,13 @@ Satellite::Satellite() {}
Satellite::Satellite(SatelliteType satellite_type)
: satellite_type(satellite_type),
- is_time(false),
- active(false),
- has_mirror(false),
- hidden(true),
- amount(0.0),
- angle(0.0),
- steps(0)
+ is_time(false),
+ active(false),
+ has_mirror(false),
+ hidden(true),
+ amount(0.0),
+ angle(0.0),
+ steps(0)
{}
Satellite::~Satellite() {}
@@ -46,7 +46,7 @@ Satellite::~Satellite() {}
* Calculate the time in curve_in with a size of A
* TODO: find a better place to it
*/
-
+
double timeAtArcLength(double const A, Geom::Curve const &curve_in)
{