platformize-three的测试用例
A BVH implementation to speed up raycasting against three.js meshes.
JavaScript 3D library
A React renderer for Threejs
[`react-three-fiber`](https://github.com/drcmda/react-three-fiber) support. This package is for version 6 of react-three-fiber
stand-alone library of threejs examples
Intl.LocaleMatcher ponyfill
Various utilities related to Three.js
SDF-based text rendering for Three.js
useful add-ons for react-three-fiber
TypeScript definitions for three
Globe data visualization as a ThreeJS reusable 3D object
Buffer Reading and Writing
postprocessing wrapper for React and @react-three/fiber
Easy way to render ThreeJS objects with built-in interaction defaults
ThreeJS geometry for drawing polygons on a sphere
ThreeJS geometry for stroking GeoJSON objects on a sphere
Datadog CI plugin for `synthetics` commands
Force-directed graph as a ThreeJS 3d object
Universal (Browser & Node) JavaScript error notifier for Honeybadger.io
Tiled maps on a globe as a ThreeJS reusable 3D object
unit-jest plugin for vue-cli
VRM file loader for three.js.
Spring bone module for @pixiv/three-vrm
Iron Hammer gathers together three components to help automate the build, test and deployment process of C# projects: an Anvil, a Hammer and a Blacksmith.
This installs three major features: * a 'gem test' command. * the ability to test your gems on installation, and uninstall them if they fail testing. * A facility to upload your test results to http://www.gem-testers.org.
Minimal RubyGem used only by the Three monorepo release-smoke workflow.
Wake is a very simplistic synchronisation tool for web applications. You can set up three envioronments (test, development and production) and use wither FTP or SFTP to sync your sites.
A plugin for the Cinch IRC framework to search YouTube and deliver the top three results from the specified search. You can visit irc://rawr.sinsira.net #Lobby to get help, report issues , test the gem, or just chat.
IrtRuby is a comprehensive Ruby library for Item Response Theory (IRT) analysis, commonly used in educational assessment, psychological testing, and survey research. Features three core IRT models: • Rasch Model (1PL) - Simple difficulty-only model • Two-Parameter Model (2PL) - Adds item discrimination • Three-Parameter Model (3PL) - Includes guessing parameter Key capabilities: • Robust gradient ascent optimization with adaptive learning rates • Flexible missing data strategies (ignore, treat as incorrect/correct) • Comprehensive performance benchmarking suite • Memory-efficient implementation with excellent scaling • Production-ready with extensive test coverage Perfect for researchers, data scientists, and developers working with educational assessments, psychological measurements, or any binary response data where item and person parameters need to be estimated simultaneously.
The SCAI interface is used when the merchant wishes to keep the acquirer on her/his own website for the whole duration of the transaction (client payment details transits through *both* the merchant site and the saferpay database ) whereas VT implies a redirect to the saferpay site. == FEATURES/PROBLEMS: * supports both common credit cards and direct debit cards ("Lastschrift") * support for VT style payments is incomplete == SYNOPSIS: Init (info from saferpay test account; they're the same for all test accounts): @pan = "9451123100000004" # Saferpay test PAN @accountid = "99867-94913159" # Saferpay test ACCOUNTID @exp = "1107" # This will change for other test accounts I guess... Might just be three months ahead of Time.now @sfp = Saferpay.new( @accountid, @pan, @exp ) Reserve: <tt>@sfp.reserve(30000, "USD")</tt> Amounts are divided by 100. We're talking cents here, not dollars... Capture last transaction: <tt>@sfp.capture</tt> Capture with a transacaton ID "4hj34hj4hh34h4j3hj4h334": <tt>@sfp.capture("4hj34hj4hh34h4j3hj4h334")</tt> == REQUIREMENTS:
ActiveGenie is an enabler for creating reliable GenAI features, offering powerful, model-agnostic tools across any provider. It allows you to settle subjective comparisons with a `ActibeGenie::Comparator` module that stages a political debate, get accurate scores from an AI jury using `ActiveGenie::Scorer`, and rank large datasets using `ActiveGenie::Ranker`'s tournament-style system. This reliability is built on three core pillars: - Custom Benchmarking: Testing for consistency with every new version and model update. - Reasoning Prompting: Utilizing human reasoning techniques (like debate and jury review) to control a model's reasoning. - Overfitting Prompts: Highly specialized, and potentially model-specific, prompt for each module's purpose.
== DESCRIPTION: This is a ruby wrapper around Plotr with a similar API to Gruff. You can create graphs with a similar interface to Gruff, but offload the rendering to the browser! == FEATURES/PROBLEMS: * Needs more tests! == SYNOPSIS: An example in rails. Your controller: class GraphController < ApplicationController def index @drawr = Drawr::Pie.new @drawr.title = "Twan" @drawr.data("One", [1]) @drawr.data('Two', [2]) @drawr.data('Three', [2]) @drawr.data('Four', [10]) @drawr.data('Five', [6]) end end Your view: <html> <head> <%= javascript_include_tag 'prototype' %> <%= javascript_include_tag 'excanvas' %> <%= javascript_include_tag 'Plotr' %> </head> <body> <%= @drawr %> </body> </html>
Assigns a case-insensitive unique three-letter code to each record in a scope, based loosely on some other attribute of the record
ruby-bindgen reads C and C++ headers with libclang and emits Ruby bindings. It supports three output formats: Rice C++ source for high-fidelity C++ wrappers, raw FFI for plain C libraries, and CMake build files to compile the generated extensions. Bindings are driven from a YAML configuration that controls header matching, symbol filtering, name mapping, and version guards. Battle-tested against OpenCV (thousands of classes) and PROJ.
= sql_valued_columns SqlValuedColumns is an ActiveRecord plugin that will let you have specific SQL statements executed on INSERT / UPDATE. It will call the SQL function you provide, passing the arguments specified in the call to sql_column. See the documentation for SqlValuedColumns::ClassMethods#sql_column for more information regarding usage, including passing Strings and Proc objects as arguments to your SQL function. Example: You have a model with two columns, one named "another_column" and the other named "size_of_another_column". Whenever you insert data into "another_column", you want to have size_of_another_column have the result of the SQL function LENGTH inserted into it. class MyModel < ActiveRecord::Base sql_column :size_of_another_column, "LENGTH", :another_column end Example 2: You have a model with three columns, position, latitude and longitude. Latitude and longitude are values expressed as angles, and position is a special datatype for your database that represents the X/Y/Z projection of that particular latitude and longitude (example: http://www.postgresql.org/docs/8.3/static/earthdistance.html ) When you insert data with latitude and longitude, you want to automatically call a function in your database to transform the latitude and longitude into the appropriate represenation. class MyModel < ActiveRecord::Base sql_column :position, "ll_to_earth", :latitude, :longitude end Example 3: You are an insane criminal who has somehow learned SQL. You would like to make anyone who runs your code to suffer database punishing queries and odd security and data formatting issues that will make them rue the day they ever learned of computers. class MyModel < ActiveRecord::Base sql_column :a_column, "(SELECT count(id) FROM large_list_of_things)", :raw => true sql_column :another_column, '(SELECT count(other_id) FROM other_large_list_of_things WHERE some_column = \'#{some_model_method}\')', :raw => true end == Notes No tests yet, am lazy. == Copyright Copyright (c) 2009 Chris Zelenak. See LICENSE for details.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.