Fix encoding (from ISO 8859-15 to utf8).
This commit is contained in:
@@ -219,8 +219,8 @@ template<class Traits>
|
|||||||
increment();
|
increment();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
virtual Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
virtual Self operator++(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
increment(); // dans un temporaire.
|
increment(); // dans un temporaire.
|
||||||
return tmp;
|
return tmp;
|
||||||
@@ -412,8 +412,8 @@ namespace ViewEdgeInternal {
|
|||||||
increment();
|
increment();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
inline Self operator++(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
//++_ViewEdge->getTimeStamp();
|
//++_ViewEdge->getTimeStamp();
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
increment(); // dans un temporaire.
|
increment(); // dans un temporaire.
|
||||||
@@ -425,8 +425,8 @@ namespace ViewEdgeInternal {
|
|||||||
decrement();
|
decrement();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
inline Self operator--(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
inline Self operator--(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
//++_ViewEdge->getTimeStamp();
|
//++_ViewEdge->getTimeStamp();
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
decrement(); // dans un temporaire.
|
decrement(); // dans un temporaire.
|
||||||
@@ -509,8 +509,8 @@ namespace ViewEdgeInternal {
|
|||||||
increment();
|
increment();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
inline Self operator++(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
increment(); // dans un temporaire.
|
increment(); // dans un temporaire.
|
||||||
return tmp;
|
return tmp;
|
||||||
@@ -520,8 +520,8 @@ namespace ViewEdgeInternal {
|
|||||||
decrement();
|
decrement();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
inline Self operator--(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
inline Self operator--(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
decrement(); // dans un temporaire.
|
decrement(); // dans un temporaire.
|
||||||
return tmp;
|
return tmp;
|
||||||
@@ -621,8 +621,8 @@ namespace ViewEdgeInternal {
|
|||||||
increment();
|
increment();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
inline Self operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
inline Self operator++(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
increment(); // dans un temporaire.
|
increment(); // dans un temporaire.
|
||||||
return tmp;
|
return tmp;
|
||||||
@@ -632,8 +632,8 @@ namespace ViewEdgeInternal {
|
|||||||
decrement();
|
decrement();
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
inline Self operator--(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
inline Self operator--(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
Self tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
decrement(); // dans un temporaire.
|
decrement(); // dans un temporaire.
|
||||||
return tmp;
|
return tmp;
|
||||||
|
|||||||
@@ -165,8 +165,8 @@ namespace ViewVertexInternal{
|
|||||||
/*! Increments.In the scripting language, call
|
/*! Increments.In the scripting language, call
|
||||||
* "increment()".
|
* "increment()".
|
||||||
*/
|
*/
|
||||||
virtual orientedViewEdgeIterator operator++(int) // op<EFBFBD>rateur correspondant <EFBFBD> i++
|
virtual orientedViewEdgeIterator operator++(int) // opérateur correspondant à i++
|
||||||
{ // c.a.d qui renvoie la valeur *puis* incr<EFBFBD>mente.
|
{ // c.a.d qui renvoie la valeur *puis* incrémente.
|
||||||
orientedViewEdgeIterator tmp = *this; // C'est pour cela qu'on stocke la valeur
|
orientedViewEdgeIterator tmp = *this; // C'est pour cela qu'on stocke la valeur
|
||||||
increment(); // dans un temporaire.
|
increment(); // dans un temporaire.
|
||||||
return tmp;
|
return tmp;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* GTS - Library for the manipulation of triangulated surfaces
|
/* GTS - Library for the manipulation of triangulated surfaces
|
||||||
* Copyright (C) 1999-2002 Ray Jones, St<EFBFBD>phane Popinet
|
* Copyright (C) 1999-2002 Ray Jones, Stéphane Popinet
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/* GTS - Library for the manipulation of triangulated surfaces
|
/* GTS - Library for the manipulation of triangulated surfaces
|
||||||
* Copyright (C) 1999 St<EFBFBD>phane Popinet
|
* Copyright (C) 1999 Stéphane Popinet
|
||||||
*
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Library General Public
|
* modify it under the terms of the GNU Library General Public
|
||||||
|
|||||||
Reference in New Issue
Block a user