Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-manias committed Feb 14, 2025
1 parent 10ea3b2 commit ba65f96
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<li class="nav-item"><a class="nav-link" href="modules/core.html">API</a></li>
<li class="nav-item"><a class="nav-link" href="wiki/Home.html">Wiki</a></li>
<li class="nav-item"><a class="nav-link" href="https://github.com/parasol-framework/parasol">GitHub</a></li>
<!-- <li class="nav-item"><a class="nav-link" href="?">RIPL</a></li>-->
<!-- <li class="nav-item"><a class="nav-link" href="?">Donate</a></li>-->
</ul>
</div>
Expand Down
2 changes: 0 additions & 2 deletions src/vector/defs/gradient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,6 @@ GradientColours::GradientColours(const std::vector<GradientStop> &Stops, VCS Col

GradientColours::GradientColours(const std::array<FRGB, 256> &Map, double Resolution)
{
resolution = Resolution;

for (LONG i=0; i < std::ssize(Map); i++) {
table[i] = agg::rgba8(Map[i]);
}
Expand Down
3 changes: 3 additions & 0 deletions src/vector/scene/scene_fill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,9 @@ static void fill_pattern(VectorState &State, const TClipRectangle<double> &Bound
else if (dmf::hasY(Pattern.Dimensions)) dy = y_offset + Pattern.Y;
else dy = y_offset;

//target_width *= Transform.sx;
//target_height *= Transform.sy;

LONG page_width = F2T(target_width);
LONG page_height = F2T(target_height);

Expand Down

0 comments on commit ba65f96

Please sign in to comment.