r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[!REBOL3-OLD1]

Henrik
8-Oct-2009
[18970]
can grad-pen do all the properties of SVG gradients that you need?
Steeve
8-Oct-2009
[18971]
I think so.
The only remaining problem will be the transform attribute.

They can apply a matrix to transform the gradient. But we don't have 
that, as-is in Draw.

We can apply rotate, scalling, and translation (i guess) on gradients, 
but separatly, not as a matrix.
Henrik
8-Oct-2009
[18972x2]
I think we should ask Cyphre, whether this property can be added.
unless it's possible to perform the transformation prior to stating 
the grad-pen.
Steeve
8-Oct-2009
[18974]
Do you mean, taking the matrix and extraction the different components 
(rotation, translation, scaling) ?
I don't know if it's possible, i'm not good enough with maths ;-)
Henrik
8-Oct-2009
[18975]
I think it's possible to transform the gradpen alone before stating 
the shape to fill, but I haven't tested it.
GiuseppeC
9-Oct-2009
[18976]
I have one curiosity: REBOL3 VID is going to be an old style 2D interface. 
New interfaces, expecially for mobile device are PSEUDO 3D and touch 
based. Could this kind of interface be inplemented to support current 
and future generations of  products ?
Henrik
9-Oct-2009
[18977]
yes, both touch and 3D are possible.
Steeve
9-Oct-2009
[18978]
Btw, doing my SVG renderer with R3, i can't convert my drawings into 
images, it's crashing.
Using the draw function or to-image as well.

I can post a bug, but i don't know what's the problem because it 
depends of the drawing. Sometime it crashs, sometimes not.
Maxim
9-Oct-2009
[18979]
there are a few specific things, even in R2 which cause the render 
to crash outright.
Steeve
9-Oct-2009
[18980]
Actually,  it's not crashing the interactive rendering. it's crashing 
the to-image conversion.
So that, we can't save our drawings as images.
Maxim
9-Oct-2009
[18981x3]
that is strange... never had one without the other in R2... although 
in R2 if you put the to-image call in an attempt and the effect was 
invalid (and would usually cause a rebol error), that face will never 
render again, whatever you do with it... is stays in a corrupt internal 
state.
might be based on the same very core handling of view.
note the above effect doesn't happen in all setups, but I've had 
this happen to me in an earlier version of my image expression application.
Maxim
12-Oct-2009
[18984]
new 'EVOKE method published... crash logs!!!  Read this blog: http://www.rebol.net/r3blogs/0269.html
Steeve
12-Oct-2009
[18985]
well, i posted a typical crash bug yesterday.

But i can't replicate this crash anymore. I rewrote my code in an 
another way.
Henrik
13-Oct-2009
[18986x2]
Anyone has a good example for the COLLECT function? Writing function 
docs now.
I think it was used in VID3 as one of Gabriele's functions, but is 
no longer used in VID3.4.
BrianH
13-Oct-2009
[18988]
COLLECT is a quick programming function. It will get optimized out 
of mezz/library code, but will save time for programmers when their 
time is more important than the computer's, which is pretty often.
Henrik
13-Oct-2009
[18989]
It's not clear how KEEP is used from its help.
BrianH
13-Oct-2009
[18990]
Look at the code for DECODE-URL - KEEP is used like EMIT there.
Henrik
13-Oct-2009
[18991]
thanks
BrianH
13-Oct-2009
[18992]
The pattern implemented by COLLECT is used in a lot of code. The 
function will get much use :)
Henrik
13-Oct-2009
[18993]
decode-url is part of a context? I don't see the 'rules anywhere.
BrianH
13-Oct-2009
[18994]
system/intrinsic/parse-url
Henrik
13-Oct-2009
[18995]
thanks
BrianH
13-Oct-2009
[18996]
Basically the same as in R2, but referenced in a different place.
Henrik
13-Oct-2009
[18997x3]
http://www.rebol.com/r3/docs/functions/collect.html

I guess this is the best I can do.
Note that in A87 has a problem with HTTP:

>> read http://www.rebol.net

** Access error: protocol error: "Server error: HTTP/1.1 400 Bad 
Request"


In case you are trying to do something with OSX or Linux, which currently 
only are at A87.

This is not a problem in A88.
There are references to a FIND-MODULE function in the function list, 
but it doesn't exist in R3?
BrianH
13-Oct-2009
[19000]
No, it doesn't exist, and would be one line of code. However, so 
would calling this function, so it doesn't save anything. Probably 
best to remove the reference/page.
Henrik
13-Oct-2009
[19001x3]
there are a few of those on the list of function pages to remove
but, I'm about 40% through the list, and I'll compile a list of changes 
and things that need to be looked at.
is there an example of the use of IN-DIR ?
BrianH
13-Oct-2009
[19004x3]
Cool. Tell Carl though - he's the one who knows how to remove pages 
in that wiki.
IN-DIR is used for file manipuulation code, when you need to change 
the directory for onne bit of code and then change back.
The old DevBase used to use it to handle its work directory. Don't 
know about the new one.
Henrik
13-Oct-2009
[19007]
ok, thanks
ChristianE
13-Oct-2009
[19008]
Henrik, there's a currently undocumented /ONLY refinement for KEEPing 
block values with COLLECT, e.g.:

>> collect [keep 1 keep [2 3]]
== [1 2 3]

>> collect [keep 1 keep/only [2 3]]
== [1 [2 3]]
Steeve
13-Oct-2009
[19009]
Some unlisted functions still...
intern, collect-words.
Probably some other
Pekr
14-Oct-2009
[19010]
2.100.89 released - http://www.rebol.net/wiki/R3_Releases#View.exe_2.100.89_13-Oct-2009
Henrik
14-Oct-2009
[19011x2]
ChristianE, thanks for that one.
Added to the docs. If you find more errors or undocumented parts, 
keep them coming.
Maxim
14-Oct-2009
[19013]
thanks for your time and effort Henrik... this type of volunteer 
work often (usually) goes un-noticed and it really is a lot of work.
Henrik
14-Oct-2009
[19014x2]
Well, I do it to learn the parts of R3 that I don't know yet. :-) 
Going through all functions brute force without using that chance 
to write docs would be silly.
There is probably still going to be a lot of bugs and missing refinements. 
I noticed that some functions aren't written properly in the summary, 
and of course there are obsolete and missing pages.
Maxim
14-Oct-2009
[19016]
still writing docs is time consuming... I know I don't have time 
to do the brute force right now... I'm still waiting for the extensions 
extensions to help out in that area of the docs.
Henrik
14-Oct-2009
[19017]
It looks to me like some GUI functions like 'handle-events and 'base-handler 
that belong inside View are also available in the main context and 
are also listed in the docs. I assume those functions will disappear, 
once the GUI goes into a module.
RobertS
14-Oct-2009
[19018]
I posted a note to the R3 blog article on a89 as I cannot get it 
to return a prompt on Win XP SP3  - I have tried getting r3-a89.exe 
to consume a script and tried not only under cmd shell but also under 
cygwin
Henrik
14-Oct-2009
[19019]
I don't have an issue with it.