feat: implement RobertEngine — Lafayette fabric physics core#107
Draft
feat: implement RobertEngine — Lafayette fabric physics core#107
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…025/067317) Agent-Logs-Url: https://github.com/Tryonme-com/tryonyou-app/sessions/2a3435c3-37b7-4000-9a85-b1339cdbc1ed Co-authored-by: LVT-ENG <214667862+LVT-ENG@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add calculation for Lafayette silhouette factor
feat: implement RobertEngine — Lafayette fabric physics core
Apr 7, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the
RobertEnginePython class implementing fabric physics for garment overlay rendering in the Lafayette mirror, computing render metrics purely from detected biometric volumetry (no user-input weight/height required).New:
api/robert_engine.pycalculate_lafayette_factor(fabric)— silhouette width amplification:2.2 + (0.5 − drapeCoeff × 0.4)calculate_gravity_stretch(fabric, torso_h)— height elongation from GSM weight, normalised to 50–400 range, capped at +15%calculate_dynamic_alpha(fit_score, fabric, timestamp)— alpha 0.95 at perfect fit (≥95%), otherwise 0.85 ± sinusoidal breathing pulse, clamped to [0.65, 0.95]get_render_metrics(fabric_key, shoulder_w, torso_h, fit_score)— main API combining the above into{width, height, alpha, is_shiny, is_scanning, patent_id}Pilot fabric catalogue includes
silk_haussmann,business_elite,velvet_marais,linen_bastille,jersey_opera.Bug fix
Reference code used
if not timestamp:which treats the valid timestamp0.0as missing, silently falling back totime.time(). Changed toif timestamp is None:.New:
tests/test_robert_engine.py32 unit tests across 4 classes covering the fabric catalogue, each calculation method (boundary conditions, clamping, cross-fabric ordering), and the full
get_render_metricsoutput including the exact values from the problem statement's reference example.