Skip to content

Commit

Permalink
Version 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FormerLurker committed Dec 3, 2021
1 parent a75e92b commit 0cb6087
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion ArcWelderConsole/ArcWelderConsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
#define PROGRESS_TYPE_FULL "FULL"
int main(int argc, char* argv[])
{

arc_welder_args args;
std::string log_level_string;
std::string log_level_string_default = "INFO";
Expand Down
4 changes: 2 additions & 2 deletions ArcWelderTest/ArcWelderTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -305,10 +305,10 @@ static void TestAntiStutter(std::string filePath)
// BENCHY_L1_DIFFICULT
// SPIRAL_TEST
// SPIRAL_VASE_TEST_FUNNEL
std::string source_path = SPIRAL_VASE_TEST_SINGLE_LAYER_CYLINDER;
std::string source_path = SUPER_HUGE_TEST;
std::string target_path = "C:\\Users\\Brad\\Documents\\3DPrinter\\AntiStutter\\test_output.gcode";
arc_welder_args args(source_path, target_path, p_logger);
args.box_encoding = args.box_encoding = utilities::box_drawing::HTML;
args.box_encoding = args.box_encoding = utilities::box_drawing::ASCII;
args.callback = on_progress;
// override any arguments here;
args.allow_travel_arcs = true;
Expand Down
2 changes: 1 addition & 1 deletion GcodeProcessorLib/utilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ namespace utilities{
extern const std::string WHITESPACE_;
extern const char GUID_RANGE[];
extern const bool GUID_DASHES[];

extern const char PATH_SEPARATOR_;
bool is_zero(double x, double tolerance);
bool is_zero(double x);
Expand Down Expand Up @@ -86,6 +85,7 @@ namespace utilities{
std::string join(const std::string* strings, size_t length, std::string sep);

std::string join(const std::vector<std::string> strings, std::string sep);

// bool contains(const std::string source, const std::string substring); // Might need this later
std::istream& safe_get_line(std::istream& is, std::string& t);

Expand Down

0 comments on commit 0cb6087

Please sign in to comment.