glv
June 9, 2024, 4:53pm
1
Hello,
How do you edit a topic subject line to make the first character lower case?
For example change Red(int) to red(int) :
hello!
i have the code below to keep sum the rbg values every 16 pixels. However, i’m getting an error saying that red(int), green(int), and blue(int) does not exist?? the argument i passed into the function is a color, so it should work. please help, thank you so much!
public void averageColor(PImage img) {
for (int i = 0; i < emojiNames.size(); i++) {
Integer[] Color = new Integer[3];
int times = 0;
for (int r = 0; r < img.width; r += 16) {
for (int c = 0; c < i…
I tried and it remained upper-case.
With Processing tab names (similar issue as above) I would go from R to any other character to r and this works. I tried it on my topic and it did not work.
:)
1 Like
quark
June 9, 2024, 9:57pm
2
There must be a way of doing it, this discussion (rotateX does not work as expected ) managed it.
If you prefix 'rotateX() ’ to the title for this discussion it stays lowercase. Puzzled
quark
June 9, 2024, 10:00pm
3
Sort of solved it.
If the first word has an uppercase letter after the first character e.g. ‘reD’ it works but is not a full solution.
glv
June 10, 2024, 7:14am
4
This topic explains the behavior I am seeing:
When I create a post with a title like ‘NASA’ it humanizes it to ‘Nasa’ and won’t let me change it (editing it to ‘NASA’ still reverts it to the humanized form). This seems to only happen when I reduce the number of required characters for a...
Reading time: 2 mins 🕑
Likes: 34 ❤
In the case of:
Red(int) does not exist?
This would be a title that reflects the actual error that is displayed:
The function “red(int)” does not exist
And correctly shows the method with correct syntax.
The link above and it’s related topics suggests there are are Discourse settings beyond my control.
I am tagging this as a solution that answers my question.
:)