~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to src/DrGeoII-Core/DrGVectorCostumeStyle.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 : #DrGVectorCostumeStyle,
 
3
        #superclass : #DrGCurveCostumeStyle,
 
4
        #category : #'DrGeoII-Core-Item-View'
 
5
}
 
6
 
 
7
{ #category : #'initialize-release' }
 
8
DrGVectorCostumeStyle >> initialize [
 
9
        super initialize.
 
10
        self color: DrGStylePreference current vectorColor.
 
11
        self lineStyle: DrGStylePreference current vectorStyle.
 
12
        self thickness: DrGStylePreference current vectorThickness
 
13
]