2022-03-02 20:11:01 +01:00
|
|
|
Class {
|
|
|
|
#name : #DiyaRectangle,
|
2022-03-06 18:33:10 +01:00
|
|
|
#superclass : #Diya2DPrimShape,
|
2022-03-02 20:11:01 +01:00
|
|
|
#category : #'Diya-Graphics'
|
|
|
|
}
|
|
|
|
|
2022-03-16 01:32:01 +01:00
|
|
|
{ #category : #'instance creation' }
|
|
|
|
DiyaRectangle class >> size: size [
|
|
|
|
^(self new) extent: size; yourself
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #'instance creation' }
|
|
|
|
DiyaRectangle class >> size: size shader:s [
|
|
|
|
^(self with:s) extent: size; yourself
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #initialization }
|
|
|
|
DiyaRectangle >> drawLines [
|
2022-03-24 22:48:41 +01:00
|
|
|
OpenGL drawArrays: GL_LINE_LOOP first:0 count: (vbuffer size >> 2).
|
2022-03-16 01:32:01 +01:00
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaRectangle >> extent: v [
|
|
|
|
bbox := Rectangle origin:0@0 corner: v.
|
|
|
|
dirty := true
|
|
|
|
]
|
|
|
|
|
2022-03-02 20:11:01 +01:00
|
|
|
{ #category : #accessing }
|
2022-03-06 19:50:19 +01:00
|
|
|
DiyaRectangle >> initialize [
|
|
|
|
super initialize.
|
|
|
|
self extent:10@10.
|
|
|
|
translation := nil.
|
2022-03-24 22:48:41 +01:00
|
|
|
vbuffer := FFIExternalArray externalNewType: GLfloat size:16.
|
2022-03-06 19:50:19 +01:00
|
|
|
vbuffer autoRelease.
|
2022-03-24 22:48:41 +01:00
|
|
|
type := GL_QUADS.
|
2022-03-06 19:50:19 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
{ #category : #accessing }
|
|
|
|
DiyaRectangle >> update [
|
2022-03-16 01:32:01 +01:00
|
|
|
|extent|
|
|
|
|
extent := self extent.
|
2022-03-05 11:55:20 +01:00
|
|
|
{
|
2022-08-06 03:11:36 +02:00
|
|
|
0. 0. 0.0. 0.0.
|
|
|
|
0. extent y. 0.0. 1.0.
|
|
|
|
extent x. extent y. 1.0. 1.0.
|
|
|
|
extent x. 0. 1.0. 0.0.
|
2022-03-06 19:50:19 +01:00
|
|
|
} doWithIndex: [:e :i| vbuffer at: i put: e].
|
|
|
|
^true
|
2022-03-02 20:11:01 +01:00
|
|
|
]
|