~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to src/DrGeoII-Core/DrGPolygonCostumeStyle.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 : #DrGPolygonCostumeStyle,
 
3
        #superclass : #DrGFilledCostumeStyle,
 
4
        #category : #'DrGeoII-Core-Item-View'
 
5
}
 
6
 
 
7
{ #category : #'initialize-release' }
 
8
DrGPolygonCostumeStyle >> initialize [
 
9
        super initialize.
 
10
        self color: DrGStylePreference current polygonColor.
 
11
        self lineStyle: DrGStylePreference current polygonStyle.
 
12
        self thickness: DrGStylePreference current polygonThickness.
 
13
        self fill: DrGStylePreference current polygonFilled.
 
14
        self translucent: DrGStylePreference current polygonTranslucent.
 
15
        self arrow: #makeNoArrows
 
16
]