Skip to content

Commit

Permalink
Allow lower framerates
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Bullock authored and manongjohn committed Dec 24, 2023
1 parent 364a5d4 commit fa3177f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rhubarb/src/exporters/DatExporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ DatExporter::DatExporter(const ShapeSet& targetShapeSet, double frameRate, bool
// Animation works with a fixed frame rate of 100.
// Downsampling to much less than 25 fps may result in dropped frames.
// Upsampling to more than 100 fps doesn't make sense.
const double minFrameRate = 24.0;
const double minFrameRate = 10.0;
const double maxFrameRate = 100.0;

if (frameRate < minFrameRate || frameRate > maxFrameRate) {
Expand Down

0 comments on commit fa3177f

Please sign in to comment.