ICC-Profile
view release on metacpan or search on metacpan
2017-06-11
- added '45_ratfunc.t' test script.
- added '47_spline2.t' test script.
2017-06-17
- modified 'press_curve_3_example.plx' by adding 'select_samples' function, and some typical selections.
- modified '_revs' and '_rev' functions of 'bern.pm', to set x-value to a random number when the slope is zero, or the x-value is out of range. added counter to quit loop after 100 iterations (v0.32).
- fixed problem in 'device_link_1_example.plx', where the output curves were incorrect for v4 dest profiles.
2017-06-18
- modified 'press_curve_1_example.plx', 'press_curve_2_example.plx', 'press_curve_3X_example.plx' and 'press_curve_4_example.plx' to use the 'select_samples' function of 'press_curve_3_example.plx'.
- added 'press_tvi_analysis.plx'.
2017-06-21
lib/ICC/Javascripts/rgraph/RGraph.svg.rose.js view on Meta::CPAN
r: radius,
start: start + prop.margin + prop.segmentsAngleOffset,
end: end - prop.margin + prop.segmentsAngleOffset,
anticlockwise: false
});
var arcPath2 = '';
} else {
var prevRadius = radius, // The previous iterations radius
radius = (sum / this.scale.max) * this.radius;
var arcPath = RG.SVG.TRIG.getArcPath2({
cx: this.centerx + explosion[0],
cy: this.centery + explosion[1],
r: radius,
start: start + prop.margin + prop.segmentsAngleOffset,
end: end - prop.margin + prop.segmentsAngleOffset,
anticlockwise: false
});
lib/ICC/Javascripts/rgraph/RGraph.waterfall.js view on Meta::CPAN
co.fillStyle = prop['chart.colors'][seq]
}
pa2(co, 'b r % % % % s % f %',
x, y, w, h,
co.strokeStyle,
co.fillStyle
);
// This is set so that the next iteration of the loop will be able to
// access THIS iterations coordinates
var previousCoords = [x, y, w, ma.abs(h)];
// Add the coordinates to the coords array (the previousCooords array, at
// this point, is actually THIS iterations coords
this.coords.push(previousCoords);
}
// Turn off the shadow
RG.noShadow(this);
( run in 1.363 second using v1.01-cache-2.11-cpan-71847e10f99 )