|
 |
Thomas de Groot <tho### [at] degroot org> wrote:
> Almost error-free! :-)
>
> In output file: example1_bumps_pattern_detail.inc there are still five
> instances of offensive comma's that need to be replaced by dots. I show
> them here below with an arrow:
>
> //----start code----
> #include "bumps_detail_pattern_macros.inc"
> #declare f_height_for_bumps_extent =
> generate_bump_follow_height_trend_f(20.0);
>
> // ------------ fiber ------------
> #declare f_thin_fiber_mockup0 =
> generate_thin_circled_pattern_f_input_t_theta_h(
> 10.0, 60.0, 3.0, 3.0, 0.015, 5,
> 0.007, 0,32, <=== 0,32 should be 0.32
> 0.00, 2.50, 0.14, 0.15,
> seed(44),
> 0.014, 20.00
> );
>
> #declare f_thin_fiber_mockup1 =
> generate_thin_circled_pattern_f_input_t_theta_h(
> 10.0, 60.0, 3.0, 3.0, 0.017, 4,
> 0.011, 0,32, <=== 0,32 should be 0.32
> 0.00, 2.50, 0.14, 0.15,
> seed(45),
> 0.014, 20.00
> );
>
>
> #declare f_thin_fiber =
> function(x, y, z, time_value) {
> +0,50*f_thin_fiber_mockup0( <=== 0,50 should be 0.50
> time_value,
> f_theta(x,y),
> f_height_for_bumps_extent(x, y, z)
> )
> +0,50*f_thin_fiber_mockup1( <=== 0,50 should be 0.50
> time_value,
> f_theta(x,y),
> f_height_for_bumps_extent(x, y, z)
> )
> }
>
> // ------------- large color ---------------------------
>
> #declare f_large_color_block_mockup =
> generate_thin_circled_pattern_f_input_t_theta_h(
> 10.0, 60.0, 3.0, 3.0, 2.32, 4,
> 0.144, 0,32, <=== 0,32 should be 0.32
> 0.00, 2.50, 0.14, 0.15,
> seed(25),
> 0.014, 20.00
> );
>
> #declare f_large_color_block =
> function(x, y, z, time_value) {
> f_adjust_sharp_distribution(
> x, y, z,
> f_large_color_block_mockup(
> time_value,
> f_theta(x,y),
> f_height_for_bumps_extent(x, y, z)
> )
> )
> }
> //----end code----
>
> With these corrected, the application works!
Yes, I correct it now..
I correct another problem for ...maybe non-windows system cannot output files
when click that "output" button. But need to be tried.
And I add an "exit" function in a menu.
Post a reply to this message
Attachments:
Download 'wooddesignprogram alpha ver20220708.rar.dat' (967 KB)
|
 |