We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are default values are set for instance variables:
private static final int defaultNumberOfWaves = 3; private static final float defaultFrequency = 2.0f; private static final float defaultAmplitude = 0.15f; private static final float defaultPhaseShift = -0.05f; private static final float defaultDensity = 5.0f; private static final float defaultPrimaryLineWidth = 3.0f; private static final float defaultSecondaryLineWidth = 1.0f; private static final int defaultBackgroundColor = Color.BLACK; private static final int defaultWaveColor = Color.WHITE; private static final float defaultXAxisPositionMultiplier = 0.5f;
These constants are not following google java style guide: https://google.github.io/styleguide/javaguide.html#s5.2.4-constant-names
I recommend we start following the guideline as we make progress with this repo.
The text was updated successfully, but these errors were encountered:
Good point. I'll pick this up and get it in this weekend.
Sorry, something went wrong.
narayanacharya6
No branches or pull requests
There are default values are set for instance variables:
These constants are not following google java style guide:
https://google.github.io/styleguide/javaguide.html#s5.2.4-constant-names
I recommend we start following the guideline as we make progress with this repo.
The text was updated successfully, but these errors were encountered: