mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
17 lines
356 B
Smalltalk
17 lines
356 B
Smalltalk
Class {
|
|
#name : #DiyaImageView,
|
|
#superclass : #DiyaRectangle,
|
|
#category : #'Diya-Graphics'
|
|
}
|
|
|
|
{ #category : #'instance creation' }
|
|
DiyaImageView class >> from: assetName [
|
|
^self new from: assetName ; yourself
|
|
]
|
|
|
|
{ #category : #'instance creation' }
|
|
DiyaImageView >> from: name [
|
|
texture := context assets texture: name.
|
|
self extent: texture extent
|
|
]
|