Re: GSOC 2020 projects

2020-02-23 Thread RazvanN via Digitalmars-d-announce
On Tuesday, 18 February 2020 at 05:59:47 UTC, RazvanN wrote: Hello everyone! In a couple of days we should find out if The Dlang Foundation was accepted as a mentoring organization for Google Summer of Code 2020. If we get accepted, I think that we should have a list of priority projects

Re: DIP 1027---String Interpolation---Format Assessment

2020-02-23 Thread Adam D. Ruppe via Digitalmars-d-announce
On Sunday, 23 February 2020 at 18:57:55 UTC, Adam D. Ruppe wrote: As the DIP author, Walter also rejected the suggestion to go with an implementation that resolves to a library template. He sees that as equivalent to AST macros, a feature which he has previously rejected. How is `foo!str,

Re: DIP 1027---String Interpolation---Format Assessment

2020-02-23 Thread Adam D. Ruppe via Digitalmars-d-announce
On Sunday, 23 February 2020 at 16:22:46 UTC, Mike Parker wrote: The decision was primarily influenced by the lack of consensus over the implementation and the syntax demonstrated in the two review threads. That's not true, we had consensus minus one - the community rallied around just one

Re: Earcut polygon triangulation

2020-02-23 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
On Sunday, 23 February 2020 at 16:20:09 UTC, Ahmet Sait wrote: On Sunday, 23 February 2020 at 10:07:44 UTC, Ferhat Kurtulmuş wrote: For those who are interested in game programming, geospatial things, 2D graphics etc. Earcut is a polygon triangulation library originally written in js and

DIP 1027---String Interpolation---Format Assessment

2020-02-23 Thread Mike Parker via Digitalmars-d-announce
DIP 1027, "String Interpolation", has been rejected. The decision was primarily influenced by the lack of consensus over the implementation and the syntax demonstrated in the two review threads. As the DIP author, Walter also rejected the suggestion to go with an implementation that resolves

Re: Earcut polygon triangulation

2020-02-23 Thread Ahmet Sait via Digitalmars-d-announce
On Sunday, 23 February 2020 at 10:07:44 UTC, Ferhat Kurtulmuş wrote: For those who are interested in game programming, geospatial things, 2D graphics etc. Earcut is a polygon triangulation library originally written in js and ported to almost every popular language (except D). I was playing

Earcut polygon triangulation

2020-02-23 Thread Ferhat Kurtulmuş via Digitalmars-d-announce
For those who are interested in game programming, geospatial things, 2D graphics etc. Earcut is a polygon triangulation library originally written in js and ported to almost every popular language (except D). I was playing around with my hobby sdl game and needed to draw some concave polygons.