REBOL3 tracker
  0.9.12 beta
Ticket #0001620 User: anonymous

Project:

Previous Next
rss
TypeBug Statusreviewed Date15-Jun-2010 18:38
Versionalpha 97 CategoryGraphics Submitted bycyphre2
PlatformAll Severitymajor Priorityhigh

Summary Draw MATRIX command doesn't work
Description MATRIX command in DRAW dialect stopped working from a96 release and up

The example should show the blue box translated by 50x50 pixels but it has no effect in >=a96 releases.
Example code
win: make gob! [
	size: 300x300
	draw: [
		fill-pen blue
		matrix [1 0 0 1 50 50]
		box 5x5 90x90
	]
]

init-view-system

view/options win [
	title: "test"
	offset: 'center
	handler: [
		name: 'my-handler
		priority: 100
		handler: func [event] [
			if event/type = 'close [
				unhandle-events self ; Remove this handler from the global list.
				unview event/window
				quit
			]
			none
		]
	]
]

Assigned ton/a Fixed in- Last Update21-Sep-2010 20:35


Comments

Date User Field Action Change
21-Sep-2010 20:35 carl Status Modified submitted => reviewed
1-Jul-2010 13:25 BrianH Summary Modified MATRIX command doesn't work => Draw MATRIX command doesn't work
1-Jul-2010 13:25 BrianH Description Modified -
1-Jul-2010 13:25 BrianH Code Modified -
15-Jun-2010 18:38 cyphre2 Ticket Added -