Skip to content

Commit

Permalink
test fix UTF8 chars part 3
Browse files Browse the repository at this point in the history
  • Loading branch information
q4a committed May 16, 2018
1 parent c868720 commit c642597
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Externals/NVTT/src/nvmath/Triangle.cpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
// This code is in the public domain -- Ignacio Castaño <[email protected]>
// This code is in the public domain -- Ignacio Castaño <[email protected]>

#include <nvmath/Triangle.h>

using namespace nv;


/// Tomas Möller, barycentric ray-triangle test.
/// Tomas Möller, barycentric ray-triangle test.
bool rayTest_Moller(const Triangle & t, Vector3::Arg orig, Vector3::Arg dir, float * out_t, float * out_u, float * out_v)
{
// find vectors for two edges sharing vert0
Expand Down
4 changes: 2 additions & 2 deletions Externals/NVTT/src/nvmath/Triangle.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This code is in the public domain -- Ignacio Castaño <[email protected]>
// This code is in the public domain -- Ignacio Castaño <[email protected]>

#ifndef NV_MATH_TRIANGLE_H
#define NV_MATH_TRIANGLE_H
Expand Down Expand Up @@ -44,7 +44,7 @@ namespace nv
};


// Tomas Akenine-Möller box-triangle test.
// Tomas Akenine-Möller box-triangle test.
NVMATH_API bool triBoxOverlap(Vector3::Arg boxcenter, Vector3::Arg boxhalfsize, const Triangle & triangle);
NVMATH_API bool triBoxOverlapNoBounds(Vector3::Arg boxcenter, Vector3::Arg boxhalfsize, const Triangle & triangle);

Expand Down
8 changes: 4 additions & 4 deletions Externals/cximage/ximainfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ void CxImage::SetOffset(long x,long y)
////////////////////////////////////////////////////////////////////////////////
/**
* \sa SetJpegQuality, GetJpegQualityF
* \author [DP]; changes [Stefan Sch?rmans]
* \author [DP]; changes [Stefan Schürmans]
*/
BYTE CxImage::GetJpegQuality() const
{
Expand All @@ -551,7 +551,7 @@ BYTE CxImage::GetJpegQuality() const
////////////////////////////////////////////////////////////////////////////////
/**
* \sa SetJpegQuality, GetJpegQuality
* \author [Stefan Sch?rmans]
* \author [Stefan Schürmans]
*/
float CxImage::GetJpegQualityF() const
{
Expand All @@ -561,7 +561,7 @@ float CxImage::GetJpegQualityF() const
/**
* quality level for JPEG and JPEG2000
* \param q: can be from 0 to 100
* \author [DP]; changes [Stefan Sch?rmans]
* \author [DP]; changes [Stefan Schürmans]
*/
void CxImage::SetJpegQuality(BYTE q){
info.fQuality = (float)q;
Expand All @@ -571,7 +571,7 @@ void CxImage::SetJpegQuality(BYTE q){
* quality level for JPEG and JPEG2000
* necessary for JPEG2000 when quality is between 0.0 and 1.0
* \param q: can be from 0.0 to 100.0
* \author [Stefan Sch?rmans]
* \author [Stefan Schürmans]
*/
void CxImage::SetJpegQualityF(float q){
if (q>0) info.fQuality = q;
Expand Down

0 comments on commit c642597

Please sign in to comment.