mirror of
https://github.com/alvierahman90/fea.git
synced 2025-10-13 07:44:23 +00:00
13 lines
258 B
Rust
13 lines
258 B
Rust
use super::super::Vector;
|
|
use super::{Beam, BoundaryCondition};
|
|
use std::cell::RefCell;
|
|
use std::rc::Weak;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Point {
|
|
pub id: usize,
|
|
pub pos: Vector,
|
|
pub bc: BoundaryCondition,
|
|
pub beams: Vec<Weak<RefCell<Beam>>>,
|
|
}
|