repo
stringlengths
6
65
file_url
stringlengths
81
311
file_path
stringlengths
6
227
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:31:58
2026-01-04 20:25:31
truncated
bool
2 classes
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/path/access.rs
crates/bevy_reflect/src/path/access.rs
//! Representation for individual element accesses within a path. use alloc::borrow::Cow; use core::fmt; use super::error::AccessErrorKind; use crate::{AccessError, PartialReflect, ReflectKind, ReflectMut, ReflectRef, VariantType}; type InnerResult<T> = Result<T, AccessErrorKind>; /// A singular element access with...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/path/mod.rs
crates/bevy_reflect/src/path/mod.rs
pub mod access; pub use access::*; mod error; pub use error::*; mod parse; pub use parse::ParseError; use parse::PathParser; use crate::{PartialReflect, Reflect}; use alloc::vec::Vec; use core::fmt; use derive_more::derive::From; use thiserror::Error; type PathResult<'a, T> = Result<T, ReflectPathError<'a>>; /// A...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/enums/helpers.rs
crates/bevy_reflect/src/enums/helpers.rs
use crate::{utility::reflect_hasher, Enum, PartialReflect, ReflectRef, VariantType}; use core::{ fmt::Debug, hash::{Hash, Hasher}, }; /// Returns the `u64` hash of the given [enum](Enum). #[inline] pub fn enum_hash<TEnum: Enum>(value: &TEnum) -> Option<u64> { let mut hasher = reflect_hasher(); core::an...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/enums/variants.rs
crates/bevy_reflect/src/enums/variants.rs
use crate::{ attributes::{impl_custom_attribute_methods, CustomAttributes}, NamedField, UnnamedField, }; use alloc::boxed::Box; use bevy_platform::collections::HashMap; use bevy_platform::sync::Arc; use core::slice::Iter; use thiserror::Error; /// Describes the form of an enum variant. #[derive(Debug, Copy, Cl...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/enums/mod.rs
crates/bevy_reflect/src/enums/mod.rs
mod dynamic_enum; mod enum_trait; mod helpers; mod variants; pub use dynamic_enum::*; pub use enum_trait::*; pub use helpers::*; pub use variants::*; #[cfg(test)] mod tests { use crate::*; use alloc::boxed::Box; #[derive(Reflect, Debug, PartialEq)] enum MyEnum { A, B(usize, i32), ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/enums/enum_trait.rs
crates/bevy_reflect/src/enums/enum_trait.rs
use crate::generics::impl_generic_info_methods; use crate::{ attributes::{impl_custom_attribute_methods, CustomAttributes}, type_info::impl_type_methods, DynamicEnum, Generics, PartialReflect, Type, TypePath, VariantInfo, VariantType, }; use alloc::{boxed::Box, format, string::String}; use bevy_platform::co...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/src/enums/dynamic_enum.rs
crates/bevy_reflect/src/enums/dynamic_enum.rs
use bevy_reflect_derive::impl_type_path; use crate::{ enum_debug, enum_hash, enum_partial_eq, ApplyError, DynamicStruct, DynamicTuple, Enum, PartialReflect, Reflect, ReflectKind, ReflectMut, ReflectOwned, ReflectRef, Struct, Tuple, TypeInfo, VariantFieldIter, VariantType, }; use alloc::{boxed::Box, string...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/examples/reflect_docs.rs
crates/bevy_reflect/examples/reflect_docs.rs
//! This example illustrates how you can reflect doc comments. //! //! There may be cases where you may want to collect a reflected item's documentation. //! For example, you may want to generate schemas or other external documentation for scripting. //! Or perhaps you want your custom editor to display tooltips for ce...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/documentation.rs
crates/bevy_reflect/derive/src/documentation.rs
//! Contains code related to documentation reflection (requires the `documentation` feature). use bevy_macro_utils::fq_std::FQOption; use proc_macro2::TokenStream; use quote::{quote, ToTokens}; use syn::{Attribute, Expr, ExprLit, Lit, Meta}; /// A struct used to represent a type's documentation, if any. /// /// When ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/trait_reflection.rs
crates/bevy_reflect/derive/src/trait_reflection.rs
use bevy_macro_utils::fq_std::{FQClone, FQOption, FQResult}; use proc_macro::TokenStream; use quote::quote; use syn::{parse::Parse, parse_macro_input, Attribute, ItemTrait, Token}; pub(crate) struct TraitInfo { item_trait: ItemTrait, } impl Parse for TraitInfo { fn parse(input: syn::parse::ParseStream) -> syn...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/string_expr.rs
crates/bevy_reflect/derive/src/string_expr.rs
use proc_macro2::TokenStream; use quote::{quote, ToTokens}; use syn::{spanned::Spanned, LitStr}; /// Contains tokens representing different kinds of string. #[derive(Clone)] pub(crate) enum StringExpr { /// A string that is valid at compile time. /// /// This is either a string literal like `"mystring"`, ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/type_path.rs
crates/bevy_reflect/derive/src/type_path.rs
use proc_macro2::Ident; use syn::{ parenthesized, parse::{Parse, ParseStream}, token::Paren, Generics, Path, PathSegment, Token, }; pub(crate) fn parse_path_no_leading_colon(input: ParseStream) -> syn::Result<Path> { if input.peek(Token![::]) { return Err(input.error("did not expect a leadi...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/reflect_opaque.rs
crates/bevy_reflect/derive/src/reflect_opaque.rs
use crate::{ container_attributes::ContainerAttributes, derive_data::ReflectTraitToImpl, type_path::CustomPathDef, }; use syn::{parenthesized, parse::ParseStream, token::Paren, Attribute, Generics, Path}; /// A struct used to define a simple reflection-opaque types (including primitives). /// /// This takes th...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/lib.rs
crates/bevy_reflect/derive/src/lib.rs
#![cfg_attr(docsrs, feature(doc_cfg))] //! This crate contains macros used by Bevy's `Reflect` API. //! //! The main export of this crate is the derive macro for [`Reflect`]. This allows //! types to easily implement `Reflect` along with other `bevy_reflect` traits, //! such as `Struct`, `GetTypeRegistration`, and mor...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/serialization.rs
crates/bevy_reflect/derive/src/serialization.rs
use crate::{ derive_data::StructField, field_attributes::{DefaultBehavior, ReflectIgnoreBehavior}, }; use bevy_macro_utils::fq_std::FQDefault; use quote::quote; use std::collections::HashMap; use syn::{spanned::Spanned, Path}; type ReflectionIndex = usize; /// Collected serialization data used to generate a `...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/remote.rs
crates/bevy_reflect/derive/src/remote.rs
use crate::{ derive_data::{ReflectImplSource, ReflectProvenance, ReflectTraitToImpl}, from_reflect, impls, impls::impl_assertions, ReflectDerive, REFLECT_ATTRIBUTE_NAME, }; use bevy_macro_utils::as_member; use bevy_macro_utils::fq_std::FQOption; use proc_macro::TokenStream; use proc_macro2::{Ident, Span...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/generics.rs
crates/bevy_reflect/derive/src/generics.rs
use crate::derive_data::ReflectMeta; use proc_macro2::TokenStream; use quote::quote; use syn::punctuated::Punctuated; use syn::{GenericParam, Token}; /// Creates a `TokenStream` for generating an expression that creates a `Generics` instance. /// /// Returns `None` if `Generics` cannot or should not be generated. pub(...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/struct_utility.rs
crates/bevy_reflect/derive/src/struct_utility.rs
use crate::ReflectStruct; /// A helper struct for creating remote-aware field accessors. /// /// These are "remote-aware" because when a field is a remote field, it uses a [`transmute`] internally /// to access the field. /// /// [`transmute`]: std::mem::transmute pub(crate) struct FieldAccessors { /// The referen...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/enum_utility.rs
crates/bevy_reflect/derive/src/enum_utility.rs
use crate::field_attributes::CloneBehavior; use crate::{ derive_data::ReflectEnum, derive_data::StructField, field_attributes::DefaultBehavior, }; use bevy_macro_utils::as_member; use bevy_macro_utils::fq_std::{FQClone, FQDefault, FQOption, FQResult}; use proc_macro2::{Ident, TokenStream}; use quote::{format_ident,...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/ident.rs
crates/bevy_reflect/derive/src/ident.rs
use proc_macro2::{Ident, Span}; /// Returns the "reflected" ident for a given string. /// /// # Example /// /// ``` /// # use proc_macro2::Ident; /// # // We can't import this method because of its visibility. /// # fn get_reflect_ident(name: &str) -> Ident { /// # let reflected = format!("Reflect{name}"); /// # ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/field_attributes.rs
crates/bevy_reflect/derive/src/field_attributes.rs
//! Contains code related to field attributes for reflected types. //! //! A field attribute is an attribute which applies to particular field or variant //! as opposed to an entire struct or enum. An example of such an attribute is //! the derive helper attribute for `Reflect`, which looks like: `#[reflect(ignore)]`. ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/from_reflect.rs
crates/bevy_reflect/derive/src/from_reflect.rs
use crate::{ container_attributes::REFLECT_DEFAULT, derive_data::ReflectEnum, enum_utility::{EnumVariantOutputData, FromReflectVariantBuilder, VariantBuilder}, field_attributes::DefaultBehavior, where_clause_options::WhereClauseOptions, ReflectMeta, ReflectStruct, }; use bevy_macro_utils::as_mem...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/meta.rs
crates/bevy_reflect/derive/src/meta.rs
use bevy_macro_utils::BevyManifest; use syn::Path; /// Returns the correct path for `bevy_reflect`. pub(crate) fn get_bevy_reflect_path() -> Path { BevyManifest::shared(|manifest| manifest.get_path("bevy_reflect")) }
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/derive_data.rs
crates/bevy_reflect/derive/src/derive_data.rs
use core::fmt; use indexmap::IndexSet; use proc_macro2::Span; use crate::{ container_attributes::{ContainerAttributes, FromReflectAttrs, TypePathAttrs}, field_attributes::FieldAttributes, remote::RemoteType, serialization::SerializationDataDef, string_expr::StringExpr, type_path::parse_path_no_...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/registration.rs
crates/bevy_reflect/derive/src/registration.rs
//! Contains code related specifically to Bevy's type registration. use crate::{serialization::SerializationDataDef, where_clause_options::WhereClauseOptions}; use quote::quote; use syn::Type; /// Creates the `GetTypeRegistration` impl for the given type data. pub(crate) fn impl_get_type_registration<'a>( where_c...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/where_clause_options.rs
crates/bevy_reflect/derive/src/where_clause_options.rs
use crate::derive_data::ReflectMeta; use bevy_macro_utils::fq_std::{FQAny, FQSend, FQSync}; use indexmap::IndexSet; use proc_macro2::{TokenStream, TokenTree}; use quote::{quote, ToTokens}; use syn::{punctuated::Punctuated, Ident, Token, Type, WhereClause}; /// Options defining how to extend the `where` clause for refl...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/container_attributes.rs
crates/bevy_reflect/derive/src/container_attributes.rs
//! Contains code related to container attributes for reflected types. //! //! A container attribute is an attribute which applies to an entire struct or enum //! as opposed to a particular field or variant. An example of such an attribute is //! the derive helper attribute for `Reflect`, which looks like: //! `#[refle...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/custom_attributes.rs
crates/bevy_reflect/derive/src/custom_attributes.rs
use proc_macro2::TokenStream; use quote::quote; use syn::{parse::ParseStream, Expr, Path, Token}; #[derive(Default, Clone)] pub(crate) struct CustomAttributes { attributes: Vec<Expr>, } impl CustomAttributes { /// Generates a `TokenStream` for `CustomAttributes` construction. pub fn to_tokens(&self, bevy_...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/tuple_structs.rs
crates/bevy_reflect/derive/src/impls/tuple_structs.rs
use crate::{ impls::{common_partial_reflect_methods, impl_full_reflect, impl_type_path, impl_typed}, struct_utility::FieldAccessors, ReflectStruct, }; use bevy_macro_utils::fq_std::{FQDefault, FQOption, FQResult}; use quote::{quote, ToTokens}; /// Implements `TupleStruct`, `GetTypeRegistration`, and `Refle...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/structs.rs
crates/bevy_reflect/derive/src/impls/structs.rs
use crate::{ impls::{common_partial_reflect_methods, impl_full_reflect, impl_type_path, impl_typed}, struct_utility::FieldAccessors, ReflectStruct, }; use bevy_macro_utils::fq_std::{FQDefault, FQOption, FQResult}; use quote::{quote, ToTokens}; /// Implements `Struct`, `GetTypeRegistration`, and `Reflect` f...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/enums.rs
crates/bevy_reflect/derive/src/impls/enums.rs
use crate::{ derive_data::{EnumVariantFields, ReflectEnum, StructField}, enum_utility::{EnumVariantOutputData, TryApplyVariantBuilder, VariantBuilder}, impls::{common_partial_reflect_methods, impl_full_reflect, impl_type_path, impl_typed}, }; use bevy_macro_utils::fq_std::{FQOption, FQResult}; use proc_macr...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/mod.rs
crates/bevy_reflect/derive/src/impls/mod.rs
mod assertions; mod common; mod enums; #[cfg(feature = "functions")] mod func; mod opaque; mod structs; mod tuple_structs; mod typed; pub(crate) use assertions::impl_assertions; #[cfg(feature = "auto_register")] pub(crate) use common::reflect_auto_registration; pub(crate) use common::{common_partial_reflect_methods, i...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/typed.rs
crates/bevy_reflect/derive/src/impls/typed.rs
use crate::{ derive_data::{ReflectMeta, ReflectTypePath}, string_expr::StringExpr, where_clause_options::WhereClauseOptions, }; use bevy_macro_utils::fq_std::FQOption; use proc_macro2::TokenStream; use quote::{quote, ToTokens}; /// Returns an expression for a `NonGenericTypeCell` or `GenericTypeCell` to g...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/common.rs
crates/bevy_reflect/derive/src/impls/common.rs
use bevy_macro_utils::fq_std::{FQAny, FQOption, FQResult}; use quote::quote; use crate::{derive_data::ReflectMeta, where_clause_options::WhereClauseOptions}; pub fn impl_full_reflect(where_clause_options: &WhereClauseOptions) -> proc_macro2::TokenStream { let meta = where_clause_options.meta(); let bevy_refl...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/opaque.rs
crates/bevy_reflect/derive/src/impls/opaque.rs
use crate::{ impls::{common_partial_reflect_methods, impl_full_reflect, impl_type_path, impl_typed}, where_clause_options::WhereClauseOptions, ReflectMeta, }; use bevy_macro_utils::fq_std::{FQClone, FQOption, FQResult}; use quote::quote; /// Implements `GetTypeRegistration` and `Reflect` for the given type...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/assertions.rs
crates/bevy_reflect/derive/src/impls/assertions.rs
use crate::{derive_data::ReflectDerive, remote::generate_remote_assertions}; use quote::quote; /// Generates an anonymous block containing compile-time assertions. pub(crate) fn impl_assertions(derive_data: &ReflectDerive) -> proc_macro2::TokenStream { let mut output = quote!(); if let Some(assertions) = gene...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/func/function_impls.rs
crates/bevy_reflect/derive/src/impls/func/function_impls.rs
use crate::{ impls::func::{ from_arg::impl_from_arg, get_ownership::impl_get_ownership, into_return::impl_into_return, }, where_clause_options::WhereClauseOptions, }; use quote::quote; pub(crate) fn impl_function_traits( where_clause_options: &WhereClauseOptions, ) -> proc_macro2::TokenStream {...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/func/from_arg.rs
crates/bevy_reflect/derive/src/impls/func/from_arg.rs
use crate::where_clause_options::WhereClauseOptions; use bevy_macro_utils::fq_std::FQResult; use quote::quote; pub(crate) fn impl_from_arg(where_clause_options: &WhereClauseOptions) -> proc_macro2::TokenStream { let meta = where_clause_options.meta(); let bevy_reflect = meta.bevy_reflect_path(); let type_p...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/func/get_ownership.rs
crates/bevy_reflect/derive/src/impls/func/get_ownership.rs
use crate::where_clause_options::WhereClauseOptions; use quote::quote; pub(crate) fn impl_get_ownership( where_clause_options: &WhereClauseOptions, ) -> proc_macro2::TokenStream { let meta = where_clause_options.meta(); let bevy_reflect = meta.bevy_reflect_path(); let type_path = meta.type_path(); ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/func/mod.rs
crates/bevy_reflect/derive/src/impls/func/mod.rs
pub(crate) use function_impls::impl_function_traits; mod from_arg; mod function_impls; mod get_ownership; mod into_return;
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_reflect/derive/src/impls/func/into_return.rs
crates/bevy_reflect/derive/src/impls/func/into_return.rs
use crate::where_clause_options::WhereClauseOptions; use quote::quote; pub(crate) fn impl_into_return( where_clause_options: &WhereClauseOptions, ) -> proc_macro2::TokenStream { let meta = where_clause_options.meta(); let bevy_reflect = meta.bevy_reflect_path(); let type_path = meta.type_path(); l...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_camera_controller/src/lib.rs
crates/bevy_camera_controller/src/lib.rs
//! A home for first-party camera controllers for Bevy, //! used for moving the camera around your scene. //! //! This crate serves two key purposes: //! //! 1. It provides functional camera controllers to help users quickly get started. //! 2. It holds the camera controllers used by Bevy's own examples and tooling. //...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_camera_controller/src/free_camera.rs
crates/bevy_camera_controller/src/free_camera.rs
//! A camera controller that allows the user to move freely around the scene. //! //! Free cameras are helpful for exploring large scenes, level editors and for debugging. //! They are rarely useful as-is for gameplay, //! as they allow the user to move freely in all directions, //! which can be disorienting, and they ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_camera_controller/src/pan_camera.rs
crates/bevy_camera_controller/src/pan_camera.rs
//! A controller for 2D cameras that supports panning, zooming, and rotation. //! //! To use this controller, add [`PanCameraPlugin`] to your app, //! and insert a [`PanCamera`] component into your camera entity. //! //! To configure the settings of this controller, modify the fields of the [`PanCamera`] component. us...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_encase_derive/src/lib.rs
crates/bevy_encase_derive/src/lib.rs
#![expect(missing_docs, reason = "Not all docs are written yet, see #3492.")] #![forbid(unsafe_code)] #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https://bevy.org/assets/icon.png", html_favicon_url = "https://bevy.org/assets/icon.png" )] use bevy_macro_utils::BevyManifest; use encase_derive...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/compass.rs
crates/bevy_math/src/compass.rs
use crate::Dir2; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; use core::ops::Neg; use glam::Vec2; /// A compass enum with 4 directions. /// ```text /// N (North) /// ▲...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/lib.rs
crates/bevy_math/src/lib.rs
#![forbid(unsafe_code)] #![cfg_attr( any(docsrs, docsrs_dep), expect( internal_features, reason = "rustdoc_internals is needed for fake_variadic" ) )] #![cfg_attr(any(docsrs, docsrs_dep), feature(rustdoc_internals))] #![cfg_attr(docsrs, feature(doc_cfg))] #![doc( html_logo_url = "https:/...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/mat3.rs
crates/bevy_math/src/mat3.rs
//! Extra utilities for 3×3 matrices. use glam::{Mat3A, Vec3, Vec3A}; /// Creates a 3×3 matrix that reflects points across the plane at the origin /// with the given normal. /// /// This is also known as a [Householder matrix]. It has the general form I - /// 2NNᵀ, where N is the normal of the plane and I is the iden...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/affine3.rs
crates/bevy_math/src/affine3.rs
use glam::{Affine3A, Mat3, Vec3, Vec3Swizzles, Vec4}; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; /// Reduced-size version of `glam::Affine3A` for use when storage has /// significant performance impact. Convert to `glam::Affine3A` to do /// non-trivial calculations. #[cfg_attr(feature = "bevy_reflect...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/isometry.rs
crates/bevy_math/src/isometry.rs
//! Isometry types for expressing rigid motions in two and three dimensions. use crate::{Affine2, Affine3, Affine3A, Dir2, Dir3, Mat3, Mat3A, Quat, Rot2, Vec2, Vec3, Vec3A}; use core::ops::Mul; #[cfg(feature = "approx")] use approx::{AbsDiffEq, RelativeEq, UlpsEq}; #[cfg(feature = "bevy_reflect")] use bevy_reflect::...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/ray.rs
crates/bevy_math/src/ray.rs
use crate::{ ops, primitives::{InfinitePlane3d, Plane2d}, Dir2, Dir3, Vec2, Vec3, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; /// An infinite half-line starting at `ori...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/rotation2d.rs
crates/bevy_math/src/rotation2d.rs
use core::f32::consts::TAU; use glam::FloatExt; use crate::{ ops, prelude::{Mat2, Vec2}, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::{std_traits::ReflectDefault, Reflect}; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; /// A 2...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/common_traits.rs
crates/bevy_math/src/common_traits.rs
//! This module contains abstract mathematical traits shared by types used in `bevy_math`. use crate::{ops, DVec2, DVec3, DVec4, Dir2, Dir3, Dir3A, Quat, Rot2, Vec2, Vec3, Vec3A, Vec4}; use core::{ convert::Infallible, fmt::Debug, ops::{Add, Div, Mul, Neg, Sub}, }; use thiserror::Error; use variadics_pleas...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/aspect_ratio.rs
crates/bevy_math/src/aspect_ratio.rs
//! Provides a simple aspect ratio struct to help with calculations. use crate::Vec2; use derive_more::derive::Into; use thiserror::Error; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; /// An `AspectRatio` is the ratio of width to height. #[derive(Copy, Clone, Debug, PartialEq, PartialOrd, Into)] #[cfg...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/direction.rs
crates/bevy_math/src/direction.rs
use crate::{ primitives::{Primitive2d, Primitive3d}, Quat, Rot2, Vec2, Vec3, Vec3A, Vec4, }; use core::f32::consts::FRAC_1_SQRT_2; use core::fmt; use derive_more::derive::Into; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_re...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/float_ord.rs
crates/bevy_math/src/float_ord.rs
use core::{ cmp::Ordering, hash::{Hash, Hasher}, ops::Neg, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; /// A wrapper for floats that implements [`Ord`], [`Eq`], and [`Hash`] traits. /// /// This is a work around for the fact that the IEEE 754-2008 standard, /// implemented by Rust's [`f...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/ops.rs
crates/bevy_math/src/ops.rs
//! This mod re-exports the correct versions of floating-point operations with //! unspecified precision in the standard library depending on whether the `libm` //! crate feature is enabled. //! //! All the functions here are named according to their versions in the standard //! library. //! //! It also provides `no_st...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/cubic_splines/mod.rs
crates/bevy_math/src/cubic_splines/mod.rs
//! Provides types for building cubic splines for rendering curves and use with animation easing. #[cfg(feature = "curve")] mod curve_impls; use crate::{ ops::{self, FloatPow}, Vec2, VectorSpace, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::{std_traits::ReflectDefault, Reflect}; use thiserror::Error; ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/cubic_splines/curve_impls.rs
crates/bevy_math/src/cubic_splines/curve_impls.rs
use super::{CubicSegment, RationalSegment}; use crate::common_traits::{VectorSpace, WithDerivative, WithTwoDerivatives}; use crate::curve::{ derivatives::{SampleDerivative, SampleTwoDerivatives}, Curve, Interval, }; #[cfg(feature = "alloc")] use super::{CubicCurve, RationalCurve}; // -- CubicSegment impl<P: ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/primitives/dim2.rs
crates/bevy_math/src/primitives/dim2.rs
use core::f32::consts::{FRAC_1_SQRT_2, FRAC_PI_2, FRAC_PI_3, PI}; use derive_more::derive::From; #[cfg(feature = "alloc")] use thiserror::Error; use super::{Measured2d, Primitive2d, WindingOrder}; use crate::{ ops::{self, FloatPow}, primitives::Inset, Dir2, InvalidDirectionError, Isometry2d, Ray2d, Rot2, V...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/primitives/polygon.rs
crates/bevy_math/src/primitives/polygon.rs
#[cfg(feature = "alloc")] use { super::{Measured2d, Triangle2d}, alloc::{collections::BTreeMap, vec::Vec}, core::cmp::Ordering, }; use crate::Vec2; #[derive(Debug, Clone, Copy)] #[cfg(feature = "alloc")] enum Endpoint { Left, Right, } /// An event in the [`EventQueue`] is either the left or right...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/primitives/inset.rs
crates/bevy_math/src/primitives/inset.rs
use crate::{ ops, primitives::{ Capsule2d, Circle, CircularSegment, Primitive2d, Rectangle, RegularPolygon, Rhombus, Triangle2d, }, Vec2, }; /// A primitive that can be resized uniformly. /// /// See documentation on [`Inset::inset`]. /// /// See also [`ToRing`](crate::primitives::ToRin...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/primitives/mod.rs
crates/bevy_math/src/primitives/mod.rs
//! This module defines primitive shapes. //! The origin is (0, 0) for 2D primitives and (0, 0, 0) for 3D primitives, //! unless stated otherwise. mod dim2; pub use dim2::*; mod dim3; pub use dim3::*; mod inset; pub use inset::*; mod polygon; /// A marker trait for 2D primitives pub trait Primitive2d {} /// A marker...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/primitives/dim3.rs
crates/bevy_math/src/primitives/dim3.rs
use core::f32::consts::{FRAC_PI_3, PI}; use super::{Circle, Measured2d, Measured3d, Primitive2d, Primitive3d}; use crate::{ ops::{self, FloatPow}, Dir3, InvalidDirectionError, Isometry3d, Mat3, Ray3d, Vec2, Vec3, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::{std_traits::ReflectDefault, Reflect}; #[cf...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/easing.rs
crates/bevy_math/src/curve/easing.rs
//! Module containing different easing functions. //! //! An easing function is a [`Curve`] that's used to transition between two //! values. It takes a time parameter, where a time of zero means the start of //! the transition and a time of one means the end. //! //! Easing functions come in a variety of shapes - one ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/iterable.rs
crates/bevy_math/src/curve/iterable.rs
//! Iterable curves, which sample in the form of an iterator in order to support `Vec`-like //! output whose length cannot be known statically. use super::Interval; #[cfg(feature = "alloc")] use {super::ConstantCurve, alloc::vec::Vec}; /// A curve which provides samples in the form of [`Iterator`]s. /// /// This is ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/mod.rs
crates/bevy_math/src/curve/mod.rs
//! The [`Curve`] trait, providing a domain-agnostic description of curves. //! //! ## Overview //! //! At a high level, [`Curve`] is a trait that abstracts away the implementation details of curves, //! which comprise any kind of data parametrized by a single continuous variable. For example, that //! variable could r...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/cores.rs
crates/bevy_math/src/curve/cores.rs
//! Core data structures to be used internally in Curve implementations, encapsulating storage //! and access patterns for reuse. //! //! The `Core` types here expose their fields publicly so that it is easier to manipulate and //! extend them, but in doing so, you must maintain the invariants of those fields yourself....
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/sample_curves.rs
crates/bevy_math/src/curve/sample_curves.rs
//! Sample-interpolated curves constructed using the [`Curve`] API. use super::cores::{EvenCore, EvenCoreError, UnevenCore, UnevenCoreError}; use super::{Curve, Interval}; use crate::StableInterpolate; #[cfg(feature = "bevy_reflect")] use alloc::format; use core::any::type_name; use core::fmt::{self, Debug}; #[cfg(f...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/interval.rs
crates/bevy_math/src/curve/interval.rs
//! The [`Interval`] type for nonempty intervals used by the [`Curve`](super::Curve) trait. use core::{ cmp::{max_by, min_by}, ops::RangeInclusive, }; use itertools::Either; use thiserror::Error; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; #[cfg(all(feature = "serialize", feature = "bevy_refle...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/adaptors.rs
crates/bevy_math/src/curve/adaptors.rs
//! Adaptors used by the Curve API for transforming and combining curves together. use super::interval::*; use super::Curve; use crate::ops; use crate::VectorSpace; use core::any::type_name; use core::fmt::{self, Debug}; use core::marker::PhantomData; #[cfg(feature = "bevy_reflect")] use { alloc::format, bev...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/derivatives/adaptor_impls.rs
crates/bevy_math/src/curve/derivatives/adaptor_impls.rs
//! Implementations of derivatives on curve adaptors. These allow //! compositionality for derivatives. use super::{SampleDerivative, SampleTwoDerivatives}; use crate::common_traits::{HasTangent, Sum, VectorSpace, WithDerivative, WithTwoDerivatives}; use crate::curve::{ adaptors::{ ChainCurve, ConstantCurv...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/curve/derivatives/mod.rs
crates/bevy_math/src/curve/derivatives/mod.rs
//! This module holds traits related to extracting derivatives from curves. In //! applications, the derivatives of interest are chiefly the first and second; //! in this module, these are provided by the traits [`CurveWithDerivative`] //! and [`CurveWithTwoDerivatives`]. //! //! These take ownership of the curve they ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/raycast2d.rs
crates/bevy_math/src/bounding/raycast2d.rs
use super::{Aabb2d, BoundingCircle, IntersectsVolume}; use crate::{ ops::{self, FloatPow}, Dir2, Ray2d, Vec2, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; /// A raycast intersection test for 2D bounding volumes #[derive(Clone, Debug)] #[cfg_attr(feature = "bevy_reflect", derive(Reflect), ref...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/mod.rs
crates/bevy_math/src/bounding/mod.rs
//! This module contains traits and implements for working with bounding shapes //! //! There are four traits used: //! - [`BoundingVolume`] is a generic abstraction for any bounding volume //! - [`IntersectsVolume`] abstracts intersection tests against a [`BoundingVolume`] //! - [`Bounded2d`]/[`Bounded3d`] are abstrac...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/raycast3d.rs
crates/bevy_math/src/bounding/raycast3d.rs
use super::{Aabb3d, BoundingSphere, IntersectsVolume}; use crate::{ ops::{self, FloatPow}, Dir3A, Ray3d, Vec3A, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; /// A raycast intersection test for 3D bounding volumes #[derive(Clone, Debug)] #[cfg_attr(feature = "bevy_reflect", derive(Reflect), r...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/bounded3d/extrusion.rs
crates/bevy_math/src/bounding/bounded3d/extrusion.rs
use core::f32::consts::FRAC_PI_2; use glam::{Vec2, Vec3A, Vec3Swizzles}; use crate::{ bounding::{BoundingCircle, BoundingVolume}, ops, primitives::{ Capsule2d, Cuboid, Cylinder, Ellipse, Extrusion, Line2d, Primitive2d, Rectangle, RegularPolygon, Ring, Segment2d, Triangle2d, }, Isom...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/bounded3d/mod.rs
crates/bevy_math/src/bounding/bounded3d/mod.rs
mod extrusion; mod primitive_impls; use glam::Mat3; use super::{BoundingVolume, IntersectsVolume}; use crate::{ ops::{self, FloatPow}, primitives::Cuboid, Isometry3d, Quat, Vec3A, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; #[cfg(all(feature = "bevy_reflect", feature = "serialize"))] u...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/bounded3d/primitive_impls.rs
crates/bevy_math/src/bounding/bounded3d/primitive_impls.rs
//! Contains [`Bounded3d`] implementations for [geometric primitives](crate::primitives). use crate::{ bounding::{Bounded2d, BoundingCircle, BoundingVolume}, ops, primitives::{ Capsule3d, Cone, ConicalFrustum, Cuboid, Cylinder, InfinitePlane3d, Line3d, Segment3d, Sphere, Torus, Triangle2d, ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/bounded2d/mod.rs
crates/bevy_math/src/bounding/bounded2d/mod.rs
mod primitive_impls; use super::{BoundingVolume, IntersectsVolume}; use crate::{ ops, prelude::{Mat2, Rot2, Vec2}, FloatPow, Isometry2d, }; #[cfg(feature = "bevy_reflect")] use bevy_reflect::Reflect; #[cfg(all(feature = "bevy_reflect", feature = "serialize"))] use bevy_reflect::{ReflectDeserialize, Reflec...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/bounding/bounded2d/primitive_impls.rs
crates/bevy_math/src/bounding/bounded2d/primitive_impls.rs
//! Contains [`Bounded2d`] implementations for [geometric primitives](crate::primitives). use crate::{ bounding::BoundingVolume, ops, primitives::{ Annulus, Arc2d, Capsule2d, Circle, CircularSector, CircularSegment, Ellipse, Line2d, Plane2d, Primitive2d, Rectangle, RegularPolygon, Rhombus, ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/rects/urect.rs
crates/bevy_math/src/rects/urect.rs
use crate::{IRect, Rect, UVec2}; #[cfg(feature = "bevy_reflect")] use bevy_reflect::{std_traits::ReflectDefault, Reflect}; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; /// A rectangle defined by two opposite corners. /// /// The rectangle is ax...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/rects/rect.rs
crates/bevy_math/src/rects/rect.rs
use crate::{IRect, URect, Vec2}; #[cfg(feature = "bevy_reflect")] use bevy_reflect::{std_traits::ReflectDefault, Reflect}; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; /// A rectangle defined by two opposite corners. /// /// The rectangle is ax...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/rects/mod.rs
crates/bevy_math/src/rects/mod.rs
mod irect; mod rect; mod urect; pub use irect::IRect; pub use rect::Rect; pub use urect::URect;
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/rects/irect.rs
crates/bevy_math/src/rects/irect.rs
use crate::{IVec2, Rect, URect}; #[cfg(feature = "bevy_reflect")] use bevy_reflect::{std_traits::ReflectDefault, Reflect}; #[cfg(all(feature = "serialize", feature = "bevy_reflect"))] use bevy_reflect::{ReflectDeserialize, ReflectSerialize}; /// A rectangle defined by two opposite corners. /// /// The rectangle is ax...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/sampling/shape_sampling.rs
crates/bevy_math/src/sampling/shape_sampling.rs
//! The [`ShapeSample`] trait, allowing random sampling from geometric shapes. //! //! At the most basic level, this allows sampling random points from the interior and boundary of //! geometric primitives. For example: //! ``` //! # use bevy_math::primitives::*; //! # use bevy_math::ShapeSample; //! # use rand::Seedab...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/sampling/standard.rs
crates/bevy_math/src/sampling/standard.rs
//! This module holds local implementations of the [`Distribution`] trait for [`StandardUniform`], which //! allow certain Bevy math types (those whose values can be randomly generated without additional //! input other than an [`Rng`]) to be produced using [`rand`]'s APIs. It also holds [`FromRng`], //! an ergonomic e...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/sampling/mod.rs
crates/bevy_math/src/sampling/mod.rs
//! This module contains tools related to random sampling. //! //! To use this, the "rand" feature must be enabled. #[cfg(feature = "alloc")] pub mod mesh_sampling; pub mod shape_sampling; pub mod standard; #[cfg(feature = "alloc")] pub use mesh_sampling::*; pub use shape_sampling::*; pub use standard::*;
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_math/src/sampling/mesh_sampling.rs
crates/bevy_math/src/sampling/mesh_sampling.rs
//! Functionality related to random sampling from triangle meshes. use crate::{ primitives::{Measured2d, Triangle3d}, ShapeSample, Vec3, }; use alloc::vec::Vec; use rand::Rng; use rand_distr::{ weighted::{Error as WeightedError, WeightedAliasIndex}, Distribution, }; /// A [distribution] that caches da...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_remote/src/builtin_methods.rs
crates/bevy_remote/src/builtin_methods.rs
//! Built-in verbs for the Bevy Remote Protocol. use core::any::TypeId; use anyhow::{anyhow, Result as AnyhowResult}; use bevy_ecs::{ component::ComponentId, entity::Entity, hierarchy::ChildOf, lifecycle::RemovedComponentEntity, message::MessageCursor, query::QueryBuilder, reflect::{AppTyp...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_remote/src/lib.rs
crates/bevy_remote/src/lib.rs
//! An implementation of the Bevy Remote Protocol, to allow for remote control of a Bevy app. //! //! Adding the [`RemotePlugin`] to your [`App`] will setup everything needed without //! starting any transports. To start accepting remote connections you will need to //! add a second plugin like the [`RemoteHttpPlugin`]...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_remote/src/http.rs
crates/bevy_remote/src/http.rs
//! The BRP transport using JSON-RPC over HTTP. //! //! Adding the [`RemoteHttpPlugin`] to your [`App`] causes Bevy to accept //! connections over HTTP (by default, on port 15702) while your app is running. //! //! Clients are expected to `POST` JSON requests to the root URL; see the `client` //! example for a trivial ...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_remote/src/schemas/open_rpc.rs
crates/bevy_remote/src/schemas/open_rpc.rs
//! Module with trimmed down `OpenRPC` document structs. //! It tries to follow this standard: <https://spec.open-rpc.org> use bevy_platform::collections::HashMap; use bevy_utils::default; use serde::{Deserialize, Serialize}; use crate::RemoteMethods; use super::json_schema::JsonSchemaBevyType; /// Represents an `Op...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_remote/src/schemas/json_schema.rs
crates/bevy_remote/src/schemas/json_schema.rs
//! Module with JSON Schema type for Bevy Registry Types. //! It tries to follow this standard: <https://json-schema.org/specification> use alloc::borrow::Cow; use bevy_platform::collections::HashMap; use bevy_reflect::{ GetTypeRegistration, NamedField, OpaqueInfo, TypeInfo, TypeRegistration, TypeRegistry, Var...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_remote/src/schemas/mod.rs
crates/bevy_remote/src/schemas/mod.rs
//! Module with schemas used for various BRP endpoints use bevy_ecs::{ reflect::{ReflectComponent, ReflectEvent, ReflectResource}, resource::Resource, }; use bevy_platform::collections::HashMap; use bevy_reflect::{ prelude::ReflectDefault, Reflect, ReflectDeserialize, ReflectSerialize, TypeData, TypeReg...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_winit/src/lib.rs
crates/bevy_winit/src/lib.rs
#![cfg_attr(docsrs, feature(doc_cfg))] #![forbid(unsafe_code)] #![doc( html_logo_url = "https://bevy.org/assets/icon.png", html_favicon_url = "https://bevy.org/assets/icon.png" )] //! `bevy_winit` provides utilities to handle window creation and the eventloop through [`winit`] //! //! Most commonly, the [`Wini...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_winit/src/winit_config.rs
crates/bevy_winit/src/winit_config.rs
use bevy_ecs::resource::Resource; use core::time::Duration; /// Settings for the [`WinitPlugin`](super::WinitPlugin). #[derive(Debug, Resource, Clone)] pub struct WinitSettings { /// Determines how frequently the application can update when it has focus. pub focused_mode: UpdateMode, /// Determines how fre...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_winit/src/winit_monitors.rs
crates/bevy_winit/src/winit_monitors.rs
use winit::monitor::MonitorHandle; use bevy_ecs::{entity::Entity, resource::Resource}; /// Stores [`winit`] monitors and their corresponding entities /// /// # Known Issues /// /// On some platforms, physically disconnecting a monitor might result in a /// panic in [`winit`]'s loop. This will lead to a crash in the b...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
false
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_winit/src/state.rs
crates/bevy_winit/src/state.rs
use approx::relative_eq; use bevy_app::{App, AppExit, PluginsState}; use bevy_ecs::{ change_detection::{DetectChanges, Res}, entity::Entity, message::{MessageCursor, MessageWriter}, prelude::*, system::SystemState, world::FromWorld, }; use bevy_input::{ gestures::*, mouse::{MouseButtonIn...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true
bevyengine/bevy
https://github.com/bevyengine/bevy/blob/51a6fedb06a022ab5d39e099413caa882e1b022d/crates/bevy_winit/src/converters.rs
crates/bevy_winit/src/converters.rs
//! Helpers for mapping between winit and bevy types use bevy_ecs::entity::Entity; use bevy_input::{ keyboard::{KeyCode, KeyboardInput, NativeKeyCode}, mouse::MouseButton, touch::{ForceTouch, TouchInput, TouchPhase}, ButtonState, }; use bevy_math::{CompassOctant, Vec2}; use bevy_window::SystemCursorIcon...
rust
Apache-2.0
51a6fedb06a022ab5d39e099413caa882e1b022d
2026-01-04T15:31:59.438636Z
true