Skip to content

Commit 65d567c

Browse files
committedSep 14, 2023
starting object oriented code
1 parent 5413258 commit 65d567c

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed
 

‎.DS_Store

0 Bytes
Binary file not shown.

‎Completed Code/objects/main.go

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
package main
2+
3+
import "fmt"
4+
5+
type Rectangle struct {
6+
x1, y1 float64
7+
width, height float64
8+
rotation float64
9+
}
10+
11+
type Circle struct {
12+
x1, y1 float64 //center
13+
radius float64
14+
}
15+
16+
func Area(r Rectangle) float64 { //copy of input rectangle is created
17+
r.height = 0.0
18+
r.width = 0.0
19+
return r.height * r.width
20+
//copy destroyed
21+
}
22+
23+
func CreateNewCircle(x, y, r float64) Circle {
24+
var c Circle
25+
26+
c.x1 = x
27+
c.y1 = y
28+
c.radius = r
29+
return c
30+
}
31+
32+
func main() {
33+
var r Rectangle
34+
r.width = 3.0
35+
r.height = 5.0
36+
fmt.Println(Area(r))
37+
fmt.Println(r.width, r.height)
38+
}

‎Completed Code/objects/objects

1.84 MB
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.