Skip to content

Commit

Permalink
beautify: add warm yellow effect
Browse files Browse the repository at this point in the history
  • Loading branch information
hejiann committed Jul 15, 2012
1 parent 2a5d256 commit d698a00
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 19 deletions.
3 changes: 3 additions & 0 deletions README
Expand Up @@ -26,6 +26,9 @@ Tools -> Beautify -> Rip Border
CHANGELOG
===================

2012-07-15
beautify: add warm yellow effect

2012-07-14
beautify: add smart color effect
beautify: add gothic style effect
Expand Down
82 changes: 63 additions & 19 deletions beautify.c
Expand Up @@ -53,9 +53,31 @@ typedef enum
BEAUTIFY_EFFECT_ICE_SPIRIT,
BEAUTIFY_EFFECT_JAPANESE,
BEAUTIFY_EFFECT_NEW_JAPANESE,
BEAUTIFY_EFFECT_WARM_YELLOW,
BEAUTIFY_EFFECT_ASTRAL,
} BeautifyEffectType;

static const BeautifyEffectType basic_effects[] =
{
BEAUTIFY_EFFECT_SOFT_LIGHT,
BEAUTIFY_EFFECT_WARM,
BEAUTIFY_EFFECT_SHARPEN,
BEAUTIFY_EFFECT_SMART_COLOR,
BEAUTIFY_EFFECT_INVERT,
};

static const BeautifyEffectType advanced_effects[] =
{
BEAUTIFY_EFFECT_GOTHIC_STYLE,
BEAUTIFY_EFFECT_LITTLE_FRESH,
BEAUTIFY_EFFECT_ABAO,
BEAUTIFY_EFFECT_ICE_SPIRIT,
BEAUTIFY_EFFECT_JAPANESE,
BEAUTIFY_EFFECT_NEW_JAPANESE,
BEAUTIFY_EFFECT_WARM_YELLOW,
BEAUTIFY_EFFECT_ASTRAL,
};

static void query (void);
static void run (const gchar *name,
gint nparams,
Expand All @@ -82,6 +104,8 @@ static void yellow_blue_update (GtkRange *range, gpointer data);
static void adjustment();

static void create_effect_pages (GtkNotebook *notebook);
static void create_effect_page (GtkNotebook *notebook, gchar *str, const BeautifyEffectType* effects, guint n_effects);

static GtkWidget* effect_icon_new (BeautifyEffectType effect);

static gboolean select_effect (GtkWidget *widget, GdkEvent *event, gpointer user_data);
Expand Down Expand Up @@ -623,28 +647,18 @@ adjustment () {

static void
create_effect_pages (GtkNotebook *notebook) {
GtkWidget *pagelabel = gtk_label_new ("Basic");
create_effect_page (notebook, "Basic", basic_effects, G_N_ELEMENTS (basic_effects));
create_effect_page (notebook, "Advanced", advanced_effects, G_N_ELEMENTS (advanced_effects));
}

static void
create_effect_page (GtkNotebook *notebook, gchar *str, const BeautifyEffectType* effects, guint n_effects) {
GtkWidget *pagelabel = gtk_label_new (str);

GtkWidget *thispage = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
gtk_container_set_border_width (GTK_CONTAINER (thispage), 12);
gtk_widget_show (thispage);

BeautifyEffectType effects[] =
{
BEAUTIFY_EFFECT_SOFT_LIGHT,
BEAUTIFY_EFFECT_WARM,
BEAUTIFY_EFFECT_SHARPEN,
BEAUTIFY_EFFECT_SMART_COLOR,
BEAUTIFY_EFFECT_INVERT,
BEAUTIFY_EFFECT_GOTHIC_STYLE,
BEAUTIFY_EFFECT_LITTLE_FRESH,
BEAUTIFY_EFFECT_ABAO,
BEAUTIFY_EFFECT_ICE_SPIRIT,
BEAUTIFY_EFFECT_JAPANESE,
BEAUTIFY_EFFECT_NEW_JAPANESE,
BEAUTIFY_EFFECT_ASTRAL,
};

/* table */
gint rows = 5;
gint cols = 3;
Expand All @@ -658,9 +672,8 @@ create_effect_pages (GtkNotebook *notebook) {
gint col = 1;

gint i;
for (i = 0; i < G_N_ELEMENTS (effects); i++) {
for (i = 0; i < n_effects; i++) {
GtkWidget *icon = effect_icon_new (effects[i]);
//gtk_box_pack_start (GTK_BOX (thispage), icon, FALSE, FALSE, 0);
gtk_table_attach_defaults (GTK_TABLE (table), icon, col - 1, col, row - 1, row);
gtk_widget_show (icon);

Expand Down Expand Up @@ -713,6 +726,9 @@ effect_icon_new (BeautifyEffectType effect)
case BEAUTIFY_EFFECT_NEW_JAPANESE:
title = "New Japanese";
break;
case BEAUTIFY_EFFECT_WARM_YELLOW:
title = "Warm Yellow";
break;
case BEAUTIFY_EFFECT_ASTRAL:
title = "Astral";
break;
Expand Down Expand Up @@ -967,6 +983,34 @@ do_effect (gint32 image, BeautifyEffectType effect)
gimp_curves_spline (effect_layer, GIMP_HISTOGRAM_BLUE, 6, blue_pts);
}
break;
case BEAUTIFY_EFFECT_WARM_YELLOW:
{
guint8 red_pts[] = {
0.0, 0.000980 * 255, 0.121569 * 255, 0.065574 * 255,
0.247059 * 255, 0.213677 * 255, 0.372549 * 255, 0.383298 * 255,
0.498039 * 255, 0.556855 * 255, 0.623529 * 255, 0.726149 * 255,
0.749020 * 255, 0.864046 * 255, 0.874510 * 255, 0.958157 * 255,
1.000000 * 255, 0.996641 * 255,
};
guint8 green_pts[] = {
0.0, 0.005882 * 255, 0.121569 * 255, 0.107837 * 255,
0.247059 * 255, 0.276792 * 255, 0.372549 * 255, 0.452811 * 255,
0.498039 * 255, 0.617782 * 255, 0.623529 * 255, 0.763782 * 255,
0.749020 * 255, 0.886822 * 255, 0.874510 * 255, 0.965223 * 255,
1.000000 * 255, 0.996993 * 255,
};
guint8 blue_pts[] = {
0.0, 0.000495 * 255, 0.121569 * 255, 0.035825 * 255,
0.247059 * 255, 0.149480 * 255, 0.372549 * 255, 0.305398 * 255,
0.498039 * 255, 0.491352 * 255, 0.623529 * 255, 0.670305 * 255,
0.749020 * 255, 0.838898 * 255, 0.874510 * 255, 0.951301 * 255,
1.000000 * 255, 0.994118 * 255,
};
gimp_curves_spline (effect_layer, GIMP_HISTOGRAM_RED, 18, red_pts);
gimp_curves_spline (effect_layer, GIMP_HISTOGRAM_GREEN, 18, green_pts);
gimp_curves_spline (effect_layer, GIMP_HISTOGRAM_BLUE, 18, blue_pts);
}
break;
case BEAUTIFY_EFFECT_ASTRAL:
{
const gchar *home = g_get_home_dir();
Expand Down
45 changes: 45 additions & 0 deletions curves/warm-yellow
@@ -0,0 +1,45 @@
# GIMP curves tool settings

(time 0)
(time 0)
(channel value)
(curve
(curve-type smooth)
(n-points 17)
(points 34 0.000000 0.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 1.000000 1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000))
(time 0)
(channel red)
(curve
(curve-type smooth)
(n-points 17)
(points 34 0.000000 0.000980 -1.000000 -1.000000 0.121569 0.065574 -1.000000 -1.000000 0.247059 0.213677 -1.000000 -1.000000 0.372549 0.383298 -1.000000 -1.000000 0.498039 0.556855 -1.000000 -1.000000 0.623529 0.726149 -1.000000 -1.000000 0.749020 0.864046 -1.000000 -1.000000 0.874510 0.958157 -1.000000 -1.000000 1.000000 0.996641)
(n-samples 256)
(samples 256 0.000980 0.002418 0.003860 0.005310 0.006773 0.008251 0.009750 0.011273 0.012824 0.014407 0.016027 0.017687 0.019391 0.021144 0.022949 0.024811 0.026734 0.028720 0.030776 0.032904 0.035109 0.037394 0.039764 0.042223 0.044775 0.047423 0.050173 0.053027 0.055990 0.059066 0.062260 0.065574 0.069017 0.072590 0.076288 0.080105 0.084037 0.088077 0.092220 0.096461 0.100795 0.105216 0.109719 0.114298 0.118948 0.123664 0.128441 0.133272 0.138153 0.143079 0.148043 0.153041 0.158067 0.163116 0.168182 0.173260 0.178345 0.183431 0.188514 0.193587 0.198645 0.203683 0.208695 0.213677 0.218660 0.223680 0.228735 0.233823 0.238943 0.244093 0.249272 0.254477 0.259708 0.264962 0.270239 0.275536 0.280852 0.286185 0.291534 0.296897 0.302272 0.307658 0.313053 0.318456 0.323865 0.329278 0.334694 0.340112 0.345528 0.350943 0.356354 0.361760 0.367159 0.372549 0.377929 0.383298 0.388666 0.394045 0.399434 0.404833 0.410241 0.415657 0.421081 0.426510 0.431946 0.437387 0.442832 0.448281 0.453733 0.459186 0.464641 0.470097 0.475552 0.481007 0.486460 0.491910 0.497358 0.502801 0.508240 0.513673 0.519100 0.524521 0.529933 0.535337 0.540732 0.546118 0.551492 0.556855 0.562223 0.567610 0.573015 0.578435 0.583868 0.589310 0.594760 0.600214 0.605671 0.611128 0.616583 0.622032 0.627474 0.632906 0.638326 0.643731 0.649118 0.654485 0.659831 0.665151 0.670443 0.675706 0.680937 0.686133 0.691292 0.696410 0.701487 0.706519 0.711503 0.716438 0.721321 0.726149 0.730939 0.735710 0.740460 0.745188 0.749893 0.754573 0.759228 0.763857 0.768458 0.773030 0.777573 0.782084 0.786563 0.791009 0.795421 0.799796 0.804136 0.808437 0.812699 0.816921 0.821102 0.825241 0.829336 0.833386 0.837391 0.841349 0.845258 0.849119 0.852929 0.856688 0.860394 0.864046 0.867655 0.871232 0.874776 0.878285 0.881759 0.885196 0.888596 0.891956 0.895277 0.898557 0.901795 0.904989 0.908140 0.911245 0.914303 0.917315 0.920278 0.923191 0.926053 0.928864 0.931622 0.934325 0.936974 0.939567 0.942102 0.944579 0.946997 0.949354 0.951650 0.953883 0.956052 0.958157 0.960188 0.962141 0.964017 0.965819 0.967550 0.969213 0.970809 0.972341 0.973812 0.975225 0.976582 0.977885 0.979137 0.980341 0.981499 0.982614 0.983688 0.984724 0.985724 0.986691 0.987628 0.988536 0.989419 0.990279 0.991119 0.991941 0.992748 0.993542 0.994325 0.995102 0.995873 0.996641))
(time 0)
(channel green)
(curve
(curve-type smooth)
(n-points 17)
(points 34 0.000000 0.005882 -1.000000 -1.000000 0.121569 0.107837 -1.000000 -1.000000 0.247059 0.276792 -1.000000 -1.000000 0.372549 0.452811 -1.000000 -1.000000 0.498039 0.617782 -1.000000 -1.000000 0.623529 0.763782 -1.000000 -1.000000 0.749020 0.886822 -1.000000 -1.000000 0.874510 0.965223 -1.000000 -1.000000 1.000000 0.996993)
(n-samples 256)
(samples 256 0.005882 0.008666 0.011453 0.014246 0.017049 0.019864 0.022695 0.025545 0.028417 0.031315 0.034240 0.037198 0.040190 0.043220 0.046291 0.049406 0.052569 0.055782 0.059049 0.062372 0.065756 0.069203 0.072716 0.076298 0.079953 0.083684 0.087494 0.091386 0.095363 0.099428 0.103585 0.107837 0.112194 0.116662 0.121235 0.125908 0.130676 0.135535 0.140478 0.145502 0.150600 0.155768 0.161000 0.166292 0.171639 0.177035 0.182475 0.187954 0.193468 0.199010 0.204576 0.210161 0.215760 0.221367 0.226978 0.232587 0.238190 0.243780 0.249354 0.254906 0.260431 0.265923 0.271379 0.276792 0.282194 0.287619 0.293066 0.298532 0.304016 0.309516 0.315031 0.320559 0.326098 0.331647 0.337204 0.342767 0.348335 0.353906 0.359478 0.365050 0.370621 0.376187 0.381748 0.387303 0.392848 0.398384 0.403907 0.409417 0.414912 0.420390 0.425850 0.431289 0.436706 0.442100 0.447469 0.452811 0.458137 0.463460 0.468778 0.474091 0.479398 0.484698 0.489991 0.495275 0.500551 0.505817 0.511073 0.516318 0.521551 0.526772 0.531979 0.537173 0.542352 0.547515 0.552662 0.557793 0.562906 0.568000 0.573076 0.578132 0.583168 0.588182 0.593174 0.598144 0.603090 0.608013 0.612910 0.617782 0.622634 0.627470 0.632291 0.637097 0.641886 0.646659 0.651415 0.656154 0.660875 0.665579 0.670264 0.674930 0.679578 0.684206 0.688814 0.693403 0.697970 0.702517 0.707043 0.711547 0.716030 0.720489 0.724927 0.729341 0.733732 0.738099 0.742442 0.746760 0.751054 0.755322 0.759565 0.763782 0.767985 0.772184 0.776379 0.780566 0.784744 0.788911 0.793064 0.797203 0.801324 0.805426 0.809507 0.813565 0.817598 0.821604 0.825581 0.829527 0.833440 0.837318 0.841159 0.844960 0.848721 0.852439 0.856113 0.859739 0.863316 0.866843 0.870316 0.873735 0.877097 0.880400 0.883642 0.886822 0.889949 0.893033 0.896076 0.899077 0.902035 0.904951 0.907824 0.910654 0.913441 0.916184 0.918885 0.921541 0.924154 0.926722 0.929247 0.931727 0.934162 0.936553 0.938899 0.941200 0.943455 0.945665 0.947829 0.949948 0.952020 0.954046 0.956026 0.957959 0.959846 0.961685 0.963478 0.965223 0.966911 0.968532 0.970089 0.971585 0.973021 0.974399 0.975721 0.976991 0.978209 0.979378 0.980500 0.981577 0.982611 0.983605 0.984560 0.985480 0.986365 0.987218 0.988041 0.988836 0.989606 0.990352 0.991077 0.991783 0.992471 0.993145 0.993806 0.994456 0.995098 0.995733 0.996364 0.996993))
(time 0)
(channel blue)
(curve
(curve-type smooth)
(n-points 17)
(points 34 0.000000 0.000495 -1.000000 -1.000000 0.121569 0.035825 -1.000000 -1.000000 0.247059 0.149480 -1.000000 -1.000000 0.372549 0.305398 -1.000000 -1.000000 0.498039 0.491352 -1.000000 -1.000000 0.623529 0.670305 -1.000000 -1.000000 0.749020 0.838898 -1.000000 -1.000000 0.874510 0.951301 -1.000000 -1.000000 1.000000 0.994118)
(n-samples 256)
(samples 256 0.000495 0.001023 0.001554 0.002093 0.002644 0.003210 0.003795 0.004403 0.005038 0.005704 0.006403 0.007141 0.007922 0.008748 0.009623 0.010553 0.011539 0.012587 0.013700 0.014882 0.016136 0.017467 0.018879 0.020374 0.021957 0.023632 0.025403 0.027273 0.029247 0.031327 0.033519 0.035825 0.038243 0.040765 0.043388 0.046108 0.048924 0.051831 0.054826 0.057907 0.061071 0.064314 0.067633 0.071025 0.074487 0.078016 0.081610 0.085264 0.088975 0.092742 0.096559 0.100426 0.104338 0.108292 0.112285 0.116314 0.120377 0.124469 0.128588 0.132732 0.136895 0.141077 0.145273 0.149480 0.153718 0.158009 0.162351 0.166742 0.171182 0.175670 0.180204 0.184784 0.189408 0.194075 0.198784 0.203534 0.208324 0.213152 0.218018 0.222920 0.227858 0.232830 0.237835 0.242872 0.247939 0.253037 0.258163 0.263316 0.268496 0.273701 0.278930 0.284182 0.289456 0.294751 0.300065 0.305398 0.310772 0.316208 0.321703 0.327253 0.332855 0.338505 0.344201 0.349939 0.355715 0.361525 0.367368 0.373239 0.379134 0.385051 0.390986 0.396935 0.402896 0.408865 0.414838 0.420812 0.426784 0.432750 0.438707 0.444652 0.450580 0.456490 0.462377 0.468237 0.474069 0.479867 0.485629 0.491352 0.497052 0.502748 0.508440 0.514127 0.519809 0.525487 0.531159 0.536825 0.542486 0.548140 0.553787 0.559427 0.565061 0.570686 0.576304 0.581914 0.587515 0.593107 0.598690 0.604264 0.609828 0.615382 0.620926 0.626459 0.631981 0.637492 0.642992 0.648479 0.653955 0.659418 0.664868 0.670305 0.675752 0.681229 0.686733 0.692259 0.697803 0.703360 0.708927 0.714499 0.720072 0.725642 0.731204 0.736755 0.742291 0.747806 0.753298 0.758761 0.764191 0.769585 0.774938 0.780246 0.785505 0.790710 0.795858 0.800943 0.805963 0.810912 0.815787 0.820583 0.825297 0.829923 0.834458 0.838898 0.843267 0.847594 0.851876 0.856113 0.860303 0.864445 0.868538 0.872581 0.876572 0.880510 0.884394 0.888223 0.891995 0.895709 0.899365 0.902960 0.906495 0.909966 0.913373 0.916716 0.919992 0.923200 0.926340 0.929410 0.932409 0.935335 0.938187 0.940965 0.943666 0.946290 0.948835 0.951301 0.953676 0.955952 0.958133 0.960221 0.962220 0.964133 0.965963 0.967713 0.969388 0.970988 0.972519 0.973983 0.975383 0.976723 0.978005 0.979233 0.980410 0.981540 0.982625 0.983668 0.984673 0.985643 0.986581 0.987491 0.988375 0.989237 0.990080 0.990906 0.991720 0.992525 0.993323 0.994118))
(time 0)
(channel alpha)
(curve
(curve-type free)
(n-points 17)
(points 34 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000 -1.000000)
(n-samples 256)
(samples 256 0.000000 0.003922 0.007843 0.011765 0.015686 0.019608 0.023529 0.027451 0.031373 0.035294 0.039216 0.043137 0.047059 0.050980 0.054902 0.058824 0.062745 0.066667 0.070588 0.074510 0.078431 0.082353 0.086275 0.090196 0.094118 0.098039 0.101961 0.105882 0.109804 0.113725 0.117647 0.121569 0.125490 0.129412 0.133333 0.137255 0.141176 0.145098 0.149020 0.152941 0.156863 0.160784 0.164706 0.168627 0.172549 0.176471 0.180392 0.184314 0.188235 0.192157 0.196078 0.200000 0.203922 0.207843 0.211765 0.215686 0.219608 0.223529 0.227451 0.231373 0.235294 0.239216 0.243137 0.247059 0.250980 0.254902 0.258824 0.262745 0.266667 0.270588 0.274510 0.278431 0.282353 0.286275 0.290196 0.294118 0.298039 0.301961 0.305882 0.309804 0.313725 0.317647 0.321569 0.325490 0.329412 0.333333 0.337255 0.341176 0.345098 0.349020 0.352941 0.356863 0.360784 0.364706 0.368627 0.372549 0.376471 0.380392 0.384314 0.388235 0.392157 0.396078 0.400000 0.403922 0.407843 0.411765 0.415686 0.419608 0.423529 0.427451 0.431373 0.435294 0.439216 0.443137 0.447059 0.450980 0.454902 0.458824 0.462745 0.466667 0.470588 0.474510 0.478431 0.482353 0.486275 0.490196 0.494118 0.498039 0.501961 0.505882 0.509804 0.513725 0.517647 0.521569 0.525490 0.529412 0.533333 0.537255 0.541176 0.545098 0.549020 0.552941 0.556863 0.560784 0.564706 0.568627 0.572549 0.576471 0.580392 0.584314 0.588235 0.592157 0.596078 0.600000 0.603922 0.607843 0.611765 0.615686 0.619608 0.623529 0.627451 0.631373 0.635294 0.639216 0.643137 0.647059 0.650980 0.654902 0.658824 0.662745 0.666667 0.670588 0.674510 0.678431 0.682353 0.686275 0.690196 0.694118 0.698039 0.701961 0.705882 0.709804 0.713725 0.717647 0.721569 0.725490 0.729412 0.733333 0.737255 0.741176 0.745098 0.749020 0.752941 0.756863 0.760784 0.764706 0.768627 0.772549 0.776471 0.780392 0.784314 0.788235 0.792157 0.796078 0.800000 0.803922 0.807843 0.811765 0.815686 0.819608 0.823529 0.827451 0.831373 0.835294 0.839216 0.843137 0.847059 0.850980 0.854902 0.858824 0.862745 0.866667 0.870588 0.874510 0.878431 0.882353 0.886275 0.890196 0.894118 0.898039 0.901961 0.905882 0.909804 0.913725 0.917647 0.921569 0.925490 0.929412 0.933333 0.937255 0.941176 0.945098 0.949020 0.952941 0.956863 0.960784 0.964706 0.968627 0.972549 0.976471 0.980392 0.984314 0.988235 0.992157 0.996078 1.000000))

# end of curves tool settings

0 comments on commit d698a00

Please sign in to comment.