Document that Mat3x3
and Mat4x4
constructors are column major
#13580
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/marketplace/actions/require-labels | |
# Check for existence of labels | |
# See all our labels at https://github.com/rerun-io/rerun/issues/labels | |
name: Pull Request Labels | |
on: | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- labeled | |
- unlabeled | |
jobs: | |
label: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for a "do-not-merge" label | |
uses: mheap/github-action-required-labels@v3 | |
with: | |
mode: exactly | |
count: 0 | |
labels: "do-not-merge" | |
- name: Require label "include in changelog" or "exclude from changelog" | |
uses: mheap/github-action-required-labels@v3 | |
with: | |
mode: minimum | |
count: 1 | |
labels: "exclude from changelog, include in changelog" | |
- name: Require at least one label | |
uses: mheap/github-action-required-labels@v3 | |
with: | |
mode: minimum | |
count: 1 | |
labels: "📊 analytics, 🟦 blueprint, 🪳 bug, 🌊 C++ API, CLI, codegen/idl, 🧑💻 dev experience, dependencies, 📖 documentation, 💬 discussion, examples, exclude from changelog, 🪵 Log-API, 📉 performance, 🐍 Python API, ⛃ re_datastore, 📺 re_viewer, 🔺 re_renderer, 🚜 refactor, ⛴ release, 🦀 Rust API, 🔨 testing, ui, 🕸️ web" |