From 5281610ebe2162f26580476b244a31f7d0deea58 Mon Sep 17 00:00:00 2001 From: starlord Date: Tue, 2 May 2023 20:20:49 +0400 Subject: [PATCH] added doc (#29) --- src/elements.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/elements.rs b/src/elements.rs index 90a01a8..763a1df 100644 --- a/src/elements.rs +++ b/src/elements.rs @@ -14,11 +14,11 @@ pub struct Node { pub selected: bool, pub dragged: bool, - /// This field is recomputed on every frame + /// This field is recomputed on every frame. Not available for client and not sent in changes. pub(crate) radius: f32, - /// This field is recomputed on every frame + /// This field is recomputed on every frame. Not available for client and not sent in changes. pub(crate) selected_child: bool, - /// This field is recomputed on every frame + /// This field is recomputed on every frame. Not available for client and not sent in changes. pub(crate) selected_parent: bool, } @@ -102,9 +102,9 @@ pub struct Edge { pub color: Option, pub selected: bool, - /// This field is recomputed on every frame + /// This field is recomputed on every frame. Not available for client and not sent in changes. pub(crate) selected_child: bool, - /// This field is recomputed on every frame + /// This field is recomputed on every frame. Not available for client and not sent in changes. pub(crate) selected_parent: bool, }