X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FJSBSim%2Fmath%2FFGColumnVector3.h;h=58af989ed5cc7e89537a0d760ac7233f525a102e;hb=f7f17a4744aaa1dbcd9e64b1a4bc97de888ed892;hp=85e6bab227304a11ce6dec3df00ede9b7cca63f1;hpb=bfc19675291404ddda86c9b2a12c8f9dab1bc478;p=flightgear.git diff --git a/src/FDM/JSBSim/math/FGColumnVector3.h b/src/FDM/JSBSim/math/FGColumnVector3.h index 85e6bab22..58af989ed 100644 --- a/src/FDM/JSBSim/math/FGColumnVector3.h +++ b/src/FDM/JSBSim/math/FGColumnVector3.h @@ -65,15 +65,15 @@ INCLUDES # include # else # include +# if !(defined(_MSC_VER) && _MSC_VER <= 1200) + using std::sqrt; +# endif # endif using std::ostream; using std::istream; using std::cerr; using std::cout; using std::endl; -# if !(defined(_MSC_VER) && _MSC_VER <= 1200) - using std::sqrt; -# endif # endif using std::string; #endif @@ -96,7 +96,7 @@ namespace JSBSim { CLASS DOCUMENTATION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ -/** This class implements a 3 dimensional vector. +/** This class implements a 3 element column vector. @author Jon S. Berndt, Tony Peden, et. al. @version $Id$ */ @@ -155,8 +155,8 @@ public: @param idx the component index. Return the value of the matrix entry at the given index. Indices are counted starting with 1. - This function is just a shortcut for the @ref double - operator()(unsigned int idx) const function. It is + This function is just a shortcut for the double + operator()(unsigned int idx) const function. It is used internally to access the elements in a more convenient way. Note that the index given in the argument is unchecked. */ double Entry(unsigned int idx) const { return data[idx-1]; } @@ -165,8 +165,8 @@ public: @param idx the component index. Return a reference to the vector entry at the given index. Indices are counted starting with 1. - This function is just a shortcut for the @ref double& - operator()(unsigned int idx) function. It is + This function is just a shortcut for the double& + operator()(unsigned int idx) function. It is used internally to access the elements in a more convenient way. Note that the index given in the argument is unchecked. */ double& Entry(unsigned int idx) { return data[idx-1]; } @@ -213,7 +213,7 @@ public: FGColumnVector3 operator/(const double scalar) const; /** Cross product multiplication. - @param v vector to multiply with. + @param V vector to multiply with. @return The resulting vector from the cross product multiplication. Compute and return the cross product of the current vector with the given argument. */