1 |
""" |
""" |
2 |
class that represents scalar data as plane deformated along the plane normal and proportional to the scalar value on the plane. |
class that represents scalar data as plane deformated along the plane normal and proportional to the scalar value on the plane. |
|
|
|
|
@var __author__: name of author |
|
|
@var __license__: licence agreement |
|
|
@var __copyright__: copyrights |
|
|
@var __url__: url entry point on documentation |
|
|
@var __version__: version |
|
|
@var __date__: date of the version |
|
3 |
""" |
""" |
|
__copyright__=""" Copyright (c) 2006 by ACcESS MNRF |
|
|
http://www.access.edu.au |
|
|
Primary Business: Queensland, Australia""" |
|
|
__license__="""Licensed under the Open Software License version 3.0 |
|
|
http://www.opensource.org/licenses/osl-3.0.php""" |
|
|
__author__="Paul Cochrane, L. Gross" |
|
|
__url__="http://www.iservo.edu.au/esys" |
|
|
__version__="$Revision:$" |
|
|
__date__="$Date:$" |
|
4 |
|
|
5 |
from common import Component |
import vtk |
6 |
|
|
7 |
class Carpet(Component): |
class Carpet(): |
8 |
""" |
""" |
9 |
represents scalar data as plane deformated along the plane normal and proportional to the scalar value on the plane. |
represents scalar data as plane deformated along the plane normal |
10 |
|
and proportional to the scalar value on the plane. |
11 |
""" |
""" |
12 |
pass |
|
13 |
|
|
14 |
|
|