9 lines
144 B
Plaintext
9 lines
144 B
Plaintext
[source,ruby]
|
|
----
|
|
Point = Struct.new(:x, :y, :z) # In geometry, Point is a logical structure to group data
|
|
|
|
def modify(p1, p2)
|
|
# ...
|
|
end
|
|
----
|