Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

85 lines
2.3 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkParametricMobius.cxx,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
#include "vtkParametricMobius.h"
#include "vtkObjectFactory.h"
#include "vtkMath.h"
vtkCxxRevisionMacro(vtkParametricMobius, "$Revision: 1.3 $");
vtkStandardNewMacro(vtkParametricMobius);
//----------------------------------------------------------------------------
vtkParametricMobius::vtkParametricMobius()
{
this->MinimumU = 0;
this->MinimumV = -1;
this->MaximumU = 2 * vtkMath::Pi();
this->MaximumV = 1;
this->JoinU = 1;
this->JoinV = 0;
this->TwistU = 1;
this->TwistV = 0;
this->ClockwiseOrdering = 1;
this->DerivativesAvailable = 1;
this->Radius = 1;
}
//----------------------------------------------------------------------------
vtkParametricMobius::~vtkParametricMobius()
{
}
//----------------------------------------------------------------------------
void vtkParametricMobius::Evaluate(double uvw[3], double Pt[3], double Duvw[9])
{
double u = uvw[0];
double v = uvw[1];
double *Du = Duvw;
double *Dv = Duvw+3;
double cu = cos(u);
double cu2 = cos( u / 2 );
double su = sin(u);
double su2 = sin( u / 2 );
double t = this->Radius - v * su2;
// The point
Pt[0] = t * su;
Pt[1] = t * cu;
Pt[2] = v * cu2;
//The derivatives are:
Du[0] = -v*cu2*su/2+Pt[1];
Du[1] = -v*cu2*cu/2-Pt[0];
Du[2] = -v*su2/2;
Dv[0] = -su2*su;
Dv[1] = -su2*cu;
Dv[2] = cu2;
}
//----------------------------------------------------------------------------
double vtkParametricMobius::EvaluateScalar(double *, double*, double *)
{
return 0;
}
//----------------------------------------------------------------------------
void vtkParametricMobius::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Radius: " << this->Radius << "\n";
}