PHP Velho Oeste 2024

ming_setcubicthreshold

(PHP 4 >= 4.0.5, PHP 5 < 5.3.0, PECL ming SVN)

ming_setcubicthreshold Establecer un umbral cúbico

Descripción

ming_setcubicthreshold ( int $threshold ) : void

Establece el error de umbral para dibujar curvas cúbicas bezier.

Parámetros

threshold

El umbral. Menor es más exactitud, por lo tanto un tamaño de archivo más grande.

Valores devueltos

No devuelve ningún valor.

add a note add a note

User Contributed Notes 1 note

up
0
cece at php dot net
21 years ago
Reading that document on Macromedia's site gives me light.

http://www.macromedia.com/support/flash/ts/documents/beziers.htm

It says, swf format only supports quadratic beziers, what less accurate than cubic beziers, but easy to render fast. I think, in swf file's beziers are quadratic interpolation of better looking quadratic beziers. Threshold value drives this accuracy (more control nodes, bigger files)
To Top