【问题标题】:Broken lathe object破碎的车床物体
【发布时间】:2014-05-17 05:39:08
【问题描述】:

我是 Pov-Ray 的初学者,我正在尝试在 Pov-Ray 中创建一个车床对象,但它看起来以某种方式损坏。有人可以给我一些关于如何解决它的建议吗?

我用来创建的代码是

#include "colors.inc"

global_settings {
  max_trace_level 5
  assumed_gamma 1.0
  radiosity {
    pretrace_start 0.08
    pretrace_end   0.01
    count 35
    nearest_count 5
    error_bound 1.8
    recursion_limit 2
    low_error_factor .5
    gray_threshold 0.0
    minimum_reuse 0.015
    brightness 1
    adc_bailout 0.01/2
  }
}

#default {
  texture {
    pigment {rgb 1}
    finish {
      ambient 0.0
      diffuse 0.6
      specular 0.6 roughness 0.001
      reflection { 0.0 1.0 fresnel on }
      conserve_energy
    }
  }
}

light_source { <050,250,250> 1 }
background { rgb <0,.25,.5> }

camera{
    location <250,250,250>
    look_at <0,100,0>

    }

lathe{
quadratic_spline
38,
<32.8000,284.0000>,
<37.8000,276.0000>,
<43.3000,267.0000>,
<49.3000,257.0000>,
<53.8000,248.0000>,
<58.3000,236.0000>,
<61.8000,224.0000>,
<64.3000,212.0000>,
<65.3000,199.0000>,
<64.3000,186.0000>,
<61.8000,174.0000>,
<58.3000,166.0000>,
<53.3000,157.0000>,
<46.3000,149.0000>,
<38.8000,144.0000>,
<30.3000,140.0000>,
<23.3000,137.0000>,
<17.8000,135.0000>,
<13.8000,135.0000>,
<13.8000,129.0000>,
<10.3000,127.0000>,
<7.2500,122.0000>,
<5.7500,116.0000>,
<4.7500,109.0000>,
<4.2500,101.0000>,
<3.7500,88.2000>,
<3.7500,70.3000>,
<3.7500,53.8000>,
<4.7500,39.8000>,
<6.7500,25.8000>,
<8.2500,20.3000>,
<11.3000,16.8000>,
<17.3000,14.3000>,
<25.3000,11.3000>,
<33.8000,9.2500>,
<41.3000,7.7500>,
<48.3000,5.7500>,
<48.8000,0.2500>
texture{
       pigment{color White}
       finish { phong 0.5}}
  }

【问题讨论】:

    标签: povray


    【解决方案1】:

    这似乎是由quadratic_spline 的计算不准确造成的。使用cubic_spline 作为更精确的方法应该可以解决问题。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2022-11-01
      • 2016-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多