Re: What the heck am i doing wrong? I'm just trying to create a 8 bit unsigned variable.

2025-05-17 Thread Jonathan M Davis via Digitalmars-d-learn
On Friday, May 16, 2025 1:19:41 PM Mountain Daylight Time H. S. Teoh via Digitalmars-d-learn wrote: > On Fri, May 16, 2025 at 07:04:24PM +, WhatMeWorry via Digitalmars-d-learn > wrote: > [...] > > void main() > > { > > ubyte a; > > a = a + 5; // onlineapp.d(11): Error: cannot implicit

Re: Looking for Feedback (3D engine)

2025-05-17 Thread Danny Arends via Digitalmars-d-learn
On Saturday, 17 May 2025 at 07:20:06 UTC, drug007 wrote: On 17.05.2025 01:26, Danny Arends wrote: [...] This patch fixed the issue: ```bash root@1be5cfa937c3:/DImGui# git diff diff --git a/src/math/lsystem.d b/src/math/lsystem.d index 394e902..02c085d 100644 --- a/src/math/lsystem.d +++ b/src/

Re: Looking for Feedback (3D engine)

2025-05-17 Thread drug007 via Digitalmars-d-learn
On 17.05.2025 01:26, Danny Arends wrote: Never seen it being a problem, but changing line 94 of lsystem.d from ```   test.rules[Symbols.Origin] ~= Rule("W.O", 5); ``` To ```   test.rules[Symbols.Origin] = Rule("W.O", 5); ``` Would fix it, I guess appending might not be allowed when the key