Michael L Heuer

Results 95 issues of Michael L Heuer

I believe this may already be a known issue; it appears static dur fields are not statically initialized ``` class Impatient { 1::ms => static dur moment; fun static void...

bug

A common use case in digital synthesis is to use an oscillator as an LFO for a parameter. The built in UGen oscillators provide some of such functionality via the...

Currently the ChucK language does not support namespaces or import statements. The current workaround used by LiCK and other libraries is to use `Machine.add(string)` calls to manually add all possible...

Often state within fields of a class must be initialized properly before an instance of a class can be used by callers. Typically this initialization is performed in a constructor....

As described in the comment here Sample.ck, line 25 https://github.com/heuermh/lick/blob/master/Sample.ck#L25 if the order of class definitions in that file are rearranged such that Sample comes before the other classes (SampleProcedure,...

Often a single class will compose several different aspects of functionality. For example, the LiCK class Sample can be used with several other APIs in the LiCK library. It has...

When composing object hierarchies, it is often useful to create `abstract` classes, those meant for extension not instantiation and `final` classes, those meant for instantiation not extension. The same modifiers...

Even after time has advanced `now` returns `0.0` when called within the `tick(float)` method inside a class which extends `Chugen`. For example: ``` class WhatTimeIsIt extends Chugen { fun float...

In order to release artifacts to the Maven Central repository, the following should be done - Add `` section, Maven enforcer plugin configuration, and release profile to `pom.xml` - Add...

Infrastructure

The versions maven plugin reports newer versions are available for many plugins in the `` section of pom.xml: ``` bash $ mvn org.codehaus.mojo:versions-maven-plugin:2.2:display-plugin-updates [INFO] ------------------------------------------------------------------------ [INFO] Building GA4GH: Schemas 0.6.0-SNAPSHOT...

Infrastructure