home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 1999-06-17 | 601 b | 26 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 0 'vbNone
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "TransIdentity"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = False
- Option Explicit
- ' The identity transformation.
-
- Implements Transformation
-
- ' Transform the point (X, Y).
- Private Sub Transformation_Transform(X As Single, Y As Single)
- ' Leave X and Y unchanged.
-
- End Sub
-
-
-