processingelement.java

来自「基于java的3d开发库。对坐java3d的朋友有很大的帮助。」· Java 代码 · 共 35 行

JAVA
35
字号
//===========================================================================//=-------------------------------------------------------------------------=//= Module history:                                                         =//= - May 18 2007 - Oscar Chavarro: Original base version                   =//===========================================================================package vsdk.toolkit.processing;/**DEFINITION: A `ProcessingElement` in VitralSDK is a software element withalgorithms and data structures (i.e. a class) with the specific functionalityfor manipulating and extract metadata from a data Entity (usually a geometriclow-level entity). Usually, a `ProcessingElement` provides stand-alone,self-contained 100% pure java algorithms, but can constitute also theplaceholder for wrappers that call external libraries and tools(as VTK, ITK, image processing toolkits, computational geometry toolkitsand external utilities).The ProcessingElement abstract class provides an interface for classes thatimplement strategy like design patterns (classes that encapsulates algorithms).This serves two purposes:  - To help in design level organization of classes containing algorithms    and associated working data (this eases the study of the class hierarchy)  - To provide a place to locate possible future operations, common to    all processing classes (but none of these as been detected yet)*/public abstract class ProcessingElement {    ;}//===========================================================================//= EOF                                                                     =//===========================================================================

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?