doug/depthjs 1000
DepthJS allows any web page to interact with the Microsoft Kinect using Javascript.
everybody has one, these are mine
Generator of interactive Unity-based 3D environments with physics
personal website
Handling large media files in Git
Tribeca Hacks project
AMP HTML source code, samples, and documentation. See below for more info.
jsfmt integration with Atom
startedwwwtyro/vixel
started time in 2 days
issue openedjonobr1/two.js
[Enhancement] Add return type for vector functions
Is your feature request related to a problem? Please describe.
I am using PhpStorm and the automatically generated typings for the vector all use return type void.
Examples:
clone(): void;
add(v: Two.Vector): void;
sub(v: Two.Vector): void;
Describe the solution you'd like
Add a return type to the documentation so that it returns Two.Vector instead.
See functions like makeRectangle:
/**
* @name Two#makeRectangle
* @function
* @param {Number} x
* @param {Number} y
* @param {Number} width
* @param {Number} height
* @returns {Two.Rectangle}
* @description Creates a Two.js rectangle and adds it to the scene.
*/
created time in 4 days
startedsteveruizok/perfect-arrows
started time in 5 days
starteddeepkolos/three-platformize
started time in 5 days
pull request commentgoogle/cpu_features
Adding support for Apple M1 AArch64 Architecture Processor.
There is arm A14 added to llvm if it helps in any way. https://github.com/apple/llvm-project/blob/apple/main/llvm/lib/Target/AArch64/AArch64.td#L757
comment created time in 5 days
fork djspiewak/cats-effect-cps
An incubator project for async/await syntax support for Cats Effect
fork in 7 days
created repositorytypelevel/cats-effect-cps
An incubator project for async/await syntax support for Cats Effect
created time in 7 days
Pull request review commentgoogle/cpu_features
#error "Darwin needs support for sysctlbyname" #endif #include <sys/sysctl.h>+#elif defined(CPU_FEATURES_OS_FREEBSD)
This should probably be merged with the Darwin logic above.
comment created time in 7 days
Pull request review commentgoogle/cpu_features
static void DetectSseViaOs(X86Features* features) { features->ssse3 = GetDarwinSysCtlByName("hw.optional.supplementalsse3"); features->sse4_1 = GetDarwinSysCtlByName("hw.optional.sse4_1"); features->sse4_2 = GetDarwinSysCtlByName("hw.optional.sse4_2");+#elif defined(CPU_FEATURES_OS_FREEBSD)+ features->sse = sysctlbyname("hw.instruction_sse", NULL, NULL, NULL, 1);
As far as I understand, this is not how sysctlbyname is supposed to be used.
https://www.freebsd.org/cgi/man.cgi?query=sysctlbyname&manpath=FreeBSD+13.0-RELEASE+and+Ports
One need to set proper arguments.
Also returned value is 0 upon success and -1 upon failures.
I believe we should rename GetDarwinSysCtlByName above and use it here.
comment created time in 7 days
Pull request review commentgoogle/cpu_features
#define DEFINE_TABLE_FEATURE_TYPE Aarch64Features #include "define_tables.h" +#if defined(CPU_FEATURES_OS_FREEBSD)+#error "FreeBSD not yet supported on this arch"+#endif // CPU_FEATURES_OS
// CPU_FEATURES_OS_FREEBSD
comment created time in 7 days
pull request commentgoogle/cpu_features
Hi, any chance this could get merged?
comment created time in 8 days