独り言 | Slic3rソースコードを覗く2 独り言 単位移動距離当たりの押し出す体積 と押出し長さを計算していると思われるソースコードのメモです。 double Flow::mm3_per_mm() const { if (this->bridge) { return (this->width * this->width) * PI/4.0; } // rectangle with semicircles at the ends return this->width * this->height + (this->height*this->height) / 4.0 * (PI-4.0); } sub e_per_mm3 { my $self = shift; return $self->extrusion_multiplier * (4 / (($self->filament_diameter ** 2) * PI)); } sub e_per_mm { my ($self, $mm3_per_mm) = @_; return $mm3_per_mm * $self->e_per_mm3; } この内容と独り言 | Slic3rソースコードを覗くの記述内容で押出し幅から押出し長さが出るかな? こーゆー解析嫌いじゃないです。 Perl? しらん 関連記事