~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to src/DrGeoII-Core/DrGWrappedPoint.class.st

  • Committer: Hilaire Fernandes
  • Date: 2017-11-15 13:17:03 UTC
  • Revision ID: hilaire.fernandes@gmail.com-20171115131703-pz09obavthi53ebt
DrGeo code under Tonel file format

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Class {
 
2
        #name : #DrGWrappedPoint,
 
3
        #superclass : #DrGWrappedItem,
 
4
        #category : #'DrGeoII-Core-Script'
 
5
}
 
6
 
 
7
{ #category : #accessing }
 
8
DrGWrappedPoint >> coordinates [
 
9
        ^ self mathItem point
 
10
]
 
11
 
 
12
{ #category : #updating }
 
13
DrGWrappedPoint >> cross [
 
14
        costume style shape: #cross
 
15
]
 
16
 
 
17
{ #category : #updating }
 
18
DrGWrappedPoint >> large [
 
19
        costume style pointSize: #large
 
20
]
 
21
 
 
22
{ #category : #updating }
 
23
DrGWrappedPoint >> medium [
 
24
        costume style pointSize: #medium
 
25
]
 
26
 
 
27
{ #category : #updating }
 
28
DrGWrappedPoint >> moveTo: aPoint [
 
29
        self mathItem moveTo: aPoint    
 
30
]
 
31
 
 
32
{ #category : #updating }
 
33
DrGWrappedPoint >> round [
 
34
        costume style shape: #round
 
35
]
 
36
 
 
37
{ #category : #updating }
 
38
DrGWrappedPoint >> small [
 
39
        costume style pointSize: #small
 
40
]
 
41
 
 
42
{ #category : #updating }
 
43
DrGWrappedPoint >> square [
 
44
        costume style shape: #square
 
45
]