POV-Ray : Newsgroups : povray.binaries.utilities : Wood design program test version : Re: Wood design program test version Server Time
19 Apr 2024 00:36:14 EDT (-0400)
  Re: Wood design program test version  
From: And
Date: 8 Jul 2022 03:30:00
Message: <web.62c7da1c4b788a98e660d035aa81652d@news.povray.org>
Thomas de Groot <tho### [at] degrootorg> 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)

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.