15 lines
243 B
Plaintext
15 lines
243 B
Plaintext
![]() |
[source,vbnet]
|
||
|
----
|
||
|
Class Point ' In geometry, Point is a logical structure to group data
|
||
|
|
||
|
Public x As Integer
|
||
|
Public y As Integer
|
||
|
Public z As Integer
|
||
|
|
||
|
End Class
|
||
|
|
||
|
Sub SetCoordinates(p1 As Point, p2 As Point)
|
||
|
' ...
|
||
|
End Sub
|
||
|
----
|