Hi, I want some PPT regarding brachytherapy. I'm a physiotherapist. I need to present about the brachytherapy. Can you help in that? And also with the research papers, recent research papers, along with the physical therapy treatment, I want one PPT to explain to my colleague.
brachytherapy gynecological cancer rehabilitation physical therapy
brachytherapy cervical cancer pelvic floor vaginal rehabilitation
brachytherapy side effects fatigue lymphedema pain management
cervical cancer brachytherapy quality of life sexual dysfunction
pelvic floor rehabilitation radiation therapy exercise
cancer-related fatigue exercise physical therapy intervention
mkdir -p /home/daytona/workspace/brachytherapy-ppt && ls /home/daytona/workspace/brachytherapy-ppt/
~/brachytherapy-ppt/build.js
const pptxgen = require("pptxgenjs");
const pres = new pptxgen();
pres.layout = "LAYOUT_WIDE"; // 13.3" x 7.5"
pres.title = "Brachytherapy & Physiotherapy";
pres.author = "Physiotherapy Education";
// ─────────────────────────────────────────────
// COLOUR PALETTE
// Deep teal dominant, slate-navy support, coral accent
const C = {
bg: "0D2D3A", // deep teal-navy (dominant bg)
bgLight: "112E3D", // slightly lighter bg
panel: "163D4F", // card / panel
teal: "2E9BAB", // mid teal accent
coral: "E8734A", // warm coral accent
white: "FFFFFF",
offWhite: "E8F4F7",
silver: "A8C4CC",
yellow: "F5C842",
green: "4CAF7D",
lightBlue: "7ECFDC",
};
// ─────────────────────────────────────────────
// HELPERS
function hexToRGB(hex) {
const h = hex.replace("#","");
return { r: parseInt(h.slice(0,2),16), g: parseInt(h.slice(2,4),16), b: parseInt(h.slice(4,6),16) };
}
function addBg(slide, color) {
slide.background = { color };
}
function sectionHeader(pres, title, subtitle) {
const s = pres.addSlide();
addBg(s, C.bg);
// horizontal divider bar
s.addShape(pres.ShapeType.rect, { x:0, y:3.2, w:13.3, h:1.1, fill:{ color: C.teal }, line:{ type:"none" } });
s.addText(title, {
x:0.6, y:3.25, w:12, h:1,
fontSize:38, bold:true, color:C.white, fontFace:"Calibri", align:"center"
});
if(subtitle){
s.addText(subtitle, { x:0.6, y:4.45, w:12, h:0.7, fontSize:18, color:C.offWhite, fontFace:"Calibri", align:"center", italic:true });
}
return s;
}
function bulletSlide(pres, title, bullets, opts={}) {
const s = pres.addSlide();
addBg(s, C.bg);
// title bar
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:13.3, h:1.05, fill:{ color: C.panel }, line:{type:"none"} });
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:0.22, h:1.05, fill:{ color: C.teal }, line:{type:"none"} });
s.addText(title, { x:0.35, y:0.1, w:12.5, h:0.85, fontSize:22, bold:true, color:C.lightBlue, fontFace:"Calibri", valign:"middle", margin:0 });
const itemObjs = bullets.map((b,i) => {
if(typeof b === "string") return { text: b, options:{ bullet:{type:"bullet"}, color:C.offWhite, fontSize:15.5, fontFace:"Calibri", breakLine: i<bullets.length-1 } };
return { text: b.text, options:{ bullet:{type:"bullet"}, color: b.color||C.offWhite, fontSize: b.size||15.5, fontFace:"Calibri", bold:b.bold||false, breakLine: i<bullets.length-1 } };
});
s.addText(itemObjs, {
x: opts.x||0.45, y:1.15, w: opts.w||12.3, h: opts.h||5.8,
valign:"top", lineSpacingMultiple:1.25
});
return s;
}
function twoColSlide(pres, title, leftTitle, leftBullets, rightTitle, rightBullets) {
const s = pres.addSlide();
addBg(s, C.bg);
// title bar
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:13.3, h:1.05, fill:{ color: C.panel }, line:{type:"none"} });
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:0.22, h:1.05, fill:{ color: C.coral }, line:{type:"none"} });
s.addText(title, { x:0.35, y:0.1, w:12.5, h:0.85, fontSize:22, bold:true, color:C.coral, fontFace:"Calibri", valign:"middle", margin:0 });
// left panel
s.addShape(pres.ShapeType.rect, { x:0.35, y:1.15, w:6.0, h:5.9, fill:{color:C.panel}, line:{color:C.teal, pt:1} });
s.addText(leftTitle, { x:0.45, y:1.2, w:5.8, h:0.55, fontSize:14, bold:true, color:C.teal, fontFace:"Calibri" });
const lObjs = leftBullets.map((b,i)=>({ text:b, options:{ bullet:{type:"bullet"}, color:C.offWhite, fontSize:14, fontFace:"Calibri", breakLine:i<leftBullets.length-1 } }));
s.addText(lObjs, { x:0.5, y:1.8, w:5.7, h:5.1, valign:"top", lineSpacingMultiple:1.3 });
// right panel
s.addShape(pres.ShapeType.rect, { x:6.9, y:1.15, w:6.0, h:5.9, fill:{color:C.panel}, line:{color:C.coral, pt:1} });
s.addText(rightTitle, { x:7.0, y:1.2, w:5.8, h:0.55, fontSize:14, bold:true, color:C.coral, fontFace:"Calibri" });
const rObjs = rightBullets.map((b,i)=>({ text:b, options:{ bullet:{type:"bullet"}, color:C.offWhite, fontSize:14, fontFace:"Calibri", breakLine:i<rightBullets.length-1 } }));
s.addText(rObjs, { x:7.0, y:1.8, w:5.7, h:5.1, valign:"top", lineSpacingMultiple:1.3 });
return s;
}
// ─────────────────────────────────────────────
// SLIDE 1 — TITLE SLIDE
{
const s = pres.addSlide();
addBg(s, C.bg);
// decorative gradient strip top
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:13.3, h:0.2, fill:{color:C.teal}, line:{type:"none"} });
s.addShape(pres.ShapeType.rect, { x:0, y:7.3, w:13.3, h:0.2, fill:{color:C.coral}, line:{type:"none"} });
// large decorative circle
s.addShape(pres.ShapeType.ellipse, { x:8.5, y:0.8, w:5.5, h:5.5, fill:{color:C.panel}, line:{color:C.teal, pt:2} });
s.addShape(pres.ShapeType.ellipse, { x:9.1, y:1.4, w:4.3, h:4.3, fill:{color:C.bgLight}, line:{color:C.teal, pt:1} });
s.addText("BRACHYTHERAPY", {
x:0.5, y:1.2, w:8.5, h:1.2, fontSize:46, bold:true, color:C.white, fontFace:"Calibri",
charSpacing:4
});
s.addText("& PHYSICAL THERAPY REHABILITATION", {
x:0.5, y:2.4, w:8.5, h:0.8, fontSize:22, bold:false, color:C.teal, fontFace:"Calibri"
});
s.addShape(pres.ShapeType.rect, { x:0.5, y:3.3, w:4.5, h:0.07, fill:{color:C.coral}, line:{type:"none"} });
s.addText("Gynecological Cancer Focus — Cervical & Uterine", {
x:0.5, y:3.5, w:8.5, h:0.6, fontSize:17, italic:true, color:C.silver, fontFace:"Calibri"
});
s.addText("Presented by a Physiotherapist", {
x:0.5, y:5.5, w:8.5, h:0.5, fontSize:15, color:C.offWhite, fontFace:"Calibri"
});
// inner circle text
s.addText("Radiation\nOncology\n+\nPhysio\nCare", {
x:9.3, y:2.0, w:3.7, h:3.1, fontSize:14, bold:true, color:C.lightBlue, fontFace:"Calibri",
align:"center", valign:"middle"
});
}
// SLIDE 2 — TABLE OF CONTENTS
{
const s = pres.addSlide();
addBg(s, C.bg);
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:13.3, h:1.05, fill:{color:C.panel}, line:{type:"none"} });
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:0.22, h:1.05, fill:{color:C.yellow}, line:{type:"none"} });
s.addText("PRESENTATION OUTLINE", { x:0.35, y:0.1, w:12.5, h:0.85, fontSize:22, bold:true, color:C.yellow, fontFace:"Calibri", valign:"middle", margin:0 });
const sections = [
["01", "What is Brachytherapy?", C.teal],
["02", "Types of Brachytherapy", C.teal],
["03", "Gynecological Brachytherapy – Indications", C.teal],
["04", "Procedure: How It Works", C.coral],
["05", "Dose & Technology (IGABT / 3D)", C.coral],
["06", "Acute & Late Side Effects", C.coral],
["07", "Physio Assessment Post-Brachytherapy", C.yellow],
["08", "Post-Treatment Rehabilitation (Pain & Fatigue)", C.yellow],
["09", "Pelvic Floor Physiotherapy", C.yellow],
["10", "Lymphedema Management", C.green],
["11", "Sexual Rehabilitation & Vaginal Health", C.green],
["12", "Psychosocial & Exercise Considerations", C.green],
["13", "Recent Research Evidence", C.lightBlue],
["14", "Key Research Papers (2022–2025)", C.lightBlue],
["15", "Summary & Clinical Takeaways", C.silver],
];
const col1 = sections.slice(0,8);
const col2 = sections.slice(8);
col1.forEach((item, i) => {
const y = 1.2 + i * 0.75;
s.addShape(pres.ShapeType.rect, { x:0.35, y, w:0.5, h:0.5, fill:{color:item[2]}, line:{type:"none"} });
s.addText(item[0], { x:0.35, y, w:0.5, h:0.5, fontSize:12, bold:true, color:C.bg, fontFace:"Calibri", align:"center", valign:"middle", margin:0 });
s.addText(item[1], { x:0.95, y:y+0.05, w:5.5, h:0.45, fontSize:13.5, color:C.offWhite, fontFace:"Calibri", valign:"middle" });
});
col2.forEach((item, i) => {
const y = 1.2 + i * 0.75;
s.addShape(pres.ShapeType.rect, { x:6.9, y, w:0.5, h:0.5, fill:{color:item[2]}, line:{type:"none"} });
s.addText(item[0], { x:6.9, y, w:0.5, h:0.5, fontSize:12, bold:true, color:C.bg, fontFace:"Calibri", align:"center", valign:"middle", margin:0 });
s.addText(item[1], { x:7.5, y:y+0.05, w:5.5, h:0.45, fontSize:13.5, color:C.offWhite, fontFace:"Calibri", valign:"middle" });
});
}
// SLIDE 3 — What is Brachytherapy?
bulletSlide(pres,
"WHAT IS BRACHYTHERAPY?",
[
{ text:"Definition", bold:true, color:C.teal },
"Brachytherapy (Greek: brachys = short distance) is a form of radiotherapy where a radioactive source is placed directly onto or inside the tumour volume.",
"",
{ text:"Key Physical Principle", bold:true, color:C.teal },
"Dose follows the inverse square law — radiation drops off sharply with distance, sparing surrounding healthy tissue.",
"",
{ text:"Advantage Over External Beam RT", bold:true, color:C.teal },
"Allows very high localised tumour doses (85,000–95,000 cGy) with significantly less exposure to bladder, bowel, and rectum.",
"",
{ text:"Isotopes Used", bold:true, color:C.teal },
"Modern HDR: Iridium-192 (192Ir) via afterloader device",
"LDR prostate seeds: Iodine-125 (125I), 28 keV gamma energy",
"",
{ text:"Source:", bold:false, color:C.silver, size:12 },
{ text:"Grainger & Allison's Diagnostic Radiology, 6th Ed.; Berek & Novak's Gynecology", bold:false, color:C.silver, size:12 },
]
);
// SLIDE 4 — Types of Brachytherapy
twoColSlide(pres,
"TYPES OF BRACHYTHERAPY",
"By Dose Rate",
[
"LDR (Low Dose Rate): 0.4–2 Gy/hr — inpatient; classic cervix treatment",
"MDR (Medium Dose Rate): 2–12 Gy/hr",
"HDR (High Dose Rate): >12 Gy/hr — remote afterloader; most common today",
"PDR (Pulsed Dose Rate): hourly pulses simulating LDR",
],
"By Placement",
[
"Intracavitary: applicator in body cavity (uterus, vagina) — main gynae technique",
"Intraluminal: placed in hollow tubes (bronchus, oesophagus)",
"Interstitial: needles/catheters implanted in tissue",
"Surface/mould: external surface applicator (skin tumours)",
"Intravascular: coronary artery stenosis prevention",
]
);
// SLIDE 5 — Gynecological Indications
bulletSlide(pres,
"GYNECOLOGICAL BRACHYTHERAPY — INDICATIONS",
[
{ text:"Primary Indications", bold:true, color:C.coral },
"Cervical Cancer (Stage IB–IVA): Combined with external beam RT ± chemotherapy — curative intent",
"Endometrial (Uterine) Cancer: Adjuvant vaginal vault brachytherapy post-hysterectomy",
"Vaginal Cancer: Primary or adjuvant intracavitary / interstitial treatment",
"Vulvar Cancer: Interstitial implants for localised disease",
"",
{ text:"Why Brachytherapy is Essential for Cervical Cancer", bold:true, color:C.coral },
"Local control rate: 91% at 5 years (RetroEMBRACE study, n=731 patients, 12 centres)",
"Pelvic control: 87% | Overall survival: 74% | Cancer-specific survival: 79%",
"3D Image-Guided Adaptive BT (IGABT) halves toxicity vs 2D approach (STIC trial, n=705)",
"",
{ text:"Guideline Recommendation", bold:true, color:C.coral },
"GEC-ESTRO / ABS: High-risk CTV D90 cumulative dose = 85–95 Gy (EQD2)",
"",
{ text:"Source: Berek & Novak's Gynecology", bold:false, color:C.silver, size:12 },
]
);
// SLIDE 6 — Procedure
bulletSlide(pres,
"THE BRACHYTHERAPY PROCEDURE — HOW IT WORKS",
[
{ text:"Step 1 — Applicator Placement", bold:true, color:C.yellow },
"Hollow tubes/applicators placed inside uterine cavity and vaginal fornices under US or MRI guidance",
"Ring applicators, Fletcher-Suit tandems, Vienna applicators — patient under anaesthesia/sedation",
"",
{ text:"Step 2 — 3D Imaging (MRI/CT)", bold:true, color:C.yellow },
"MRI preferred: tumour, bladder, rectum, sigmoid bowel delineated precisely",
"Allows individualised dose planning matching patient's anatomy",
"",
{ text:"Step 3 — Treatment Planning", bold:true, color:C.yellow },
"Physicist calculates dwell times at 5 mm intervals along applicator",
"GTV, CTV, OAR (organs at risk) contoured for optimal dose distribution",
"",
{ text:"Step 4 — Remote Afterloading", bold:true, color:C.yellow },
"Patient in shielded room; afterloader remotely advances 192Ir source",
"HDR: Treatment ~10–20 minutes; 5–6 fractions total",
"No radiation exposure to healthcare staff after applicator placement",
"",
{ text:"Source: Grainger & Allison's Diagnostic Radiology; Berek & Novak's Gynecology", bold:false, color:C.silver, size:12 },
]
);
// SLIDE 7 — IGABT Technology
bulletSlide(pres,
"IMAGE-GUIDED ADAPTIVE BRACHYTHERAPY (IGABT)",
[
{ text:"Evolution from 2D to 3D", bold:true, color:C.lightBlue },
"Classical 2D: Generic 'Point A' dosing via X-ray — same dose regardless of tumour size",
"3D IGABT: Individualised volumetric dose based on MRI/CT tumour geometry",
"",
{ text:"Clinical Evidence", bold:true, color:C.lightBlue },
"RetroEMBRACE (n=731): 91% local control with MR-guided IGABT",
"STIC trial (n=705): 3D brachytherapy → HALF the toxicity vs 2D",
"Improved coverage of high-risk CTV while reducing dose to bladder & rectum",
"",
{ text:"Standard Doses (3D IGABT)", bold:true, color:C.lightBlue },
"High-risk CTV D90: 85–95 Gy (EQD2) — GEC-ESTRO standard",
"Organs at risk limits: Bladder D2cc <90 Gy; Rectum D2cc <70–75 Gy",
"",
{ text:"Fractionation", bold:true, color:C.lightBlue },
"HDR: 4–6 fractions; LDR: continuous implant over 48–96 hours",
"Combined with external pelvic EBRT (45–50 Gy) ± concurrent cisplatin",
"",
{ text:"Source: Berek & Novak's Gynecology; Grainger & Allison's Diagnostic Radiology", bold:false, color:C.silver, size:12 },
]
);
// SLIDE 8 — Side Effects (two-column)
twoColSlide(pres,
"ACUTE & LATE SIDE EFFECTS — THE PHYSIO'S CONCERN",
"Acute Effects (During & Weeks After)",
[
"Pelvic pain / cramping during applicator insertion",
"Urinary frequency, dysuria, haematuria",
"Bowel urgency, diarrhoea, rectal discomfort",
"Vaginal discharge, spotting",
"Fatigue (acute cancer-related fatigue)",
"Anxiety & psychological distress",
"Anaesthesia-related effects (nausea, weakness)",
],
"Late Effects (Months to Years After)",
[
"Vaginal fibrosis & stenosis (key PT target)",
"Pelvic floor dysfunction / pain",
"Bladder: atony, fistulas (1–2%)",
"Bowel: radiation fibrosis, strictures (6–8%)",
"Lymphedema (lower limb / genital)",
"Sexual dysfunction (dyspareunia, dryness)",
"Osteoporosis (premature menopause post-radiation)",
"Chronic fatigue & deconditioning",
]
);
// SLIDE 9 — Physio Assessment
bulletSlide(pres,
"PHYSIOTHERAPY ASSESSMENT POST-BRACHYTHERAPY",
[
{ text:"Subjective Assessment", bold:true, color:C.green },
"Pain history: pelvic, perineal, lower back, lower limb — use VAS/NRS",
"Fatigue severity: FACIT-Fatigue scale or Brief Fatigue Inventory",
"Bowel/bladder dysfunction: frequency, urgency, incontinence",
"Sexual health history (if patient comfortable): dyspareunia, vaginal dryness",
"Lymphedema symptoms: limb heaviness, swelling",
"Psychological screening: anxiety, depression (PHQ-9, GAD-7)",
"",
{ text:"Objective Assessment", bold:true, color:C.green },
"Posture & movement screen: antalgic gait, lumbo-pelvic alignment",
"Pelvic floor muscle function: tone, tenderness, strength (if indicated)",
"Lymphoedema: limb circumference or water displacement, skin integrity",
"Functional capacity: 6-Minute Walk Test, sit-to-stand, grip strength",
"Scar/tissue mobility: abdominal/perineal scar assessment post-surgery",
"",
{ text:"Timing: Begin within 4–6 weeks post-treatment; screen at each oncology review", bold:false, color:C.yellow },
]
);
// SLIDE 10 — Pain & Fatigue Management
bulletSlide(pres,
"POST-TREATMENT REHABILITATION: PAIN & FATIGUE",
[
{ text:"Pain Management", bold:true, color:C.coral },
"TENS (Transcutaneous Electrical Nerve Stimulation): Evidence for pelvic pain in cancer survivors (Mathias & Pattanshetty, 2022 — TENS + stabilization exercises reduced pelvic pain)",
"Soft tissue mobilisation, trigger point therapy for pelvic floor hypertonicity",
"Graded mobilisation and postural correction for low back pain",
"Heat/cold modalities for symptom relief (avoid directly over irradiated areas)",
"Acupressure: RCT (Duzova et al., 2025) — significantly reduced anxiety, depression & pain in gynae brachytherapy patients",
"",
{ text:"Cancer-Related Fatigue (CRF) — Exercise is the Gold Standard", bold:true, color:C.coral },
"ASCO-SIO Guideline 2024 (Bower et al.): Exercise is the most evidence-based CRF intervention",
"Aerobic training: 30 min, moderate intensity, 3–5×/week — best evidence",
"Network meta-analysis (Dong et al., JOSPT 2023): Aerobic + resistance training most effective",
"Systematic review (Herranz-Gómez et al., APMR 2023): All exercise models reduce CRF during chemo-RT",
"",
{ text:"Hand Massage (RCT, Efe Arslan et al., 2024): Reduced fatigue in women receiving brachytherapy", bold:false, color:C.yellow },
]
);
// SLIDE 11 — Pelvic Floor Physiotherapy
bulletSlide(pres,
"PELVIC FLOOR PHYSIOTHERAPY",
[
{ text:"Why Radiation Damages the Pelvic Floor", bold:true, color:C.teal },
"Radiation fibrosis → tissue hypoxia, collagen crosslinking → reduced elasticity",
"Vaginal stenosis develops in up to 88% without intervention",
"Pelvic floor hypertonicity/spasm is common → contributes to pain & dysfunction",
"",
{ text:"Vaginal Rehabilitation Protocol", bold:true, color:C.teal },
"Vaginal dilator therapy: Begin 6–8 weeks post-brachytherapy",
"Graduated sizes; 3×/week for at least 1 year",
"Reduces vaginal stenosis and maintains sexual function",
"Lubricant use essential; water-based preferred",
"",
{ text:"Pelvic Floor Muscle Training (PFMT)", bold:true, color:C.teal },
"Relaxation / down-training for hypertonic pelvic floor (most common post-RT pattern)",
"Kegel exercises for hypotonicity / incontinence",
"Biofeedback to train voluntary control",
"Photobiomodulation (LLLT) + PFMT: Emerging evidence for urinary incontinence (da Silva et al., 2023)",
"",
{ text:"Goal: Restore pelvic floor function, prevent long-term disability, improve QoL", bold:false, color:C.yellow },
]
);
// SLIDE 12 — Lymphedema
bulletSlide(pres,
"LOWER LIMB LYMPHEDEMA MANAGEMENT",
[
{ text:"Why Lymphedema Occurs Post-Brachytherapy/RT", bold:true, color:C.lightBlue },
"Pelvic irradiation + lymph node dissection disrupt lymphatic drainage",
"Combined chemoradiation increases risk further",
"Incidence: 10–30% in gynecological cancer survivors",
"",
{ text:"Assessment", bold:true, color:C.lightBlue },
"Limb circumference at standardised points (10 cm above/below patella)",
"Stemmer sign, skin changes, pitting vs fibrotic oedema",
"Bioimpedance spectroscopy (where available)",
"",
{ text:"Complete Decongestive Therapy (CDT) — First-Line", bold:true, color:C.lightBlue },
"Manual Lymphatic Drainage (MLD): 45–60 min sessions, proximal-to-distal technique",
"Multi-layer compression bandaging during intensive phase",
"Compression garments (Class II/III): Long-term daily use",
"Therapeutic exercise: Decongestive exercises with garment",
"Skin care: Daily moisturiser, avoid trauma/infection",
"",
{ text:"Education: Avoid prolonged sitting, air travel precautions, temperature extremes", bold:false, color:C.yellow },
]
);
// SLIDE 13 — Sexual Rehabilitation
bulletSlide(pres,
"SEXUAL REHABILITATION & VAGINAL HEALTH",
[
{ text:"Impact of Brachytherapy on Sexual Function", bold:true, color:C.coral },
"Cervical brachytherapy significantly impairs sexual function: dyspareunia, decreased libido, vaginal dryness, orgasmic dysfunction",
"Review (Chin & Damast, Brachytherapy 2023): Brachytherapy is a key independent contributor to sexual morbidity",
"RCT (González-Alcorta et al., Front Med 2025): Sexual dysfunction and QoL impaired post-LDR brachytherapy, especially at 6 months",
"",
{ text:"Physiotherapy Role", bold:true, color:C.coral },
"Pelvic floor rehabilitation → reduces vaginismus, dyspareunia",
"Vaginal dilator programme + lubrication education",
"Non-ablative radiofrequency: Emerging — RCT (Grossi et al., J Sex Med 2025) vs promestriene for genitourinary syndrome in cervical cancer survivors",
"Mindfulness-based interventions and psychosexual counselling referral",
"",
{ text:"Timing & Sensitivity", bold:true, color:C.coral },
"Introduce topic tactfully at 6–8 week post-treatment review",
"Use validated tools: FSFI (Female Sexual Function Index), FSDS",
"Multidisciplinary approach: Physio + gynae-oncologist + psychologist",
]
);
// SLIDE 14 — Psychosocial + Exercise
twoColSlide(pres,
"PSYCHOSOCIAL WELLBEING & THERAPEUTIC EXERCISE",
"Psychosocial Considerations for Physio",
[
"Screen for anxiety & depression at every session",
"Acupressure (Duzova et al., RCT 2025): ↓ anxiety & depression in brachytherapy patients",
"Mindfulness & relaxation: breathing exercises, body scan",
"Peer support referrals; address fear of recurrence",
"Goal-setting using SMART goals for rehab",
"Maintain open communication about sexual health concerns",
],
"Exercise Prescription (Post-Brachytherapy)",
[
"Phase 1 (0–6 wks): Gentle walking 15–20 min daily, breathing exercises",
"Phase 2 (6–12 wks): Aerobic training, core stability, PFMT",
"Phase 3 (3–6 mo): Progressive resistance training, yoga/pilates",
"ASCO 2024 Guideline: Aerobic + resistance combo best for fatigue",
"Hypopressive exercises (Berríos-Contreras et al., RCT protocol 2024): For urinary incontinence & fatigue in gynae cancer",
"Avoid: High-impact exercise until 3 months post-treatment",
]
);
// SLIDE 15 — Recent Research Papers
{
const s = pres.addSlide();
addBg(s, C.bg);
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:13.3, h:1.05, fill:{color:C.panel}, line:{type:"none"} });
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:0.22, h:1.05, fill:{color:C.lightBlue}, line:{type:"none"} });
s.addText("KEY RESEARCH PAPERS (2022–2025)", { x:0.35, y:0.1, w:12.5, h:0.85, fontSize:22, bold:true, color:C.lightBlue, fontFace:"Calibri", valign:"middle", margin:0 });
const papers = [
{ num:"01", year:"2023", tier:"Systematic Review", title:"Effectiveness of Therapeutic Exercise on Cancer-Related Fatigue (Herranz-Gómez et al.)", journal:"Arch Phys Med Rehabil", color:C.green },
{ num:"02", year:"2023", tier:"Network Meta-Analysis", title:"Which Exercise Approaches Work for Relieving CRF? (Dong et al.)", journal:"J Orthop Sports Phys Ther", color:C.green },
{ num:"03", year:"2024", tier:"Practice Guideline", title:"Management of Fatigue in Adult Cancer Survivors — ASCO-SIO Guideline Update (Bower et al.)", journal:"J Clin Oncol", color:C.coral },
{ num:"04", year:"2023", tier:"Review", title:"Brachytherapy Impacts on Sexual Function in Cervical Cancer (Chin & Damast)", journal:"Brachytherapy", color:C.teal },
{ num:"05", year:"2025", tier:"RCT", title:"Acupressure on Anxiety, Depression & Pain in Gynae Brachytherapy (Duzova et al.)", journal:"Support Care Cancer", color:C.yellow },
{ num:"06", year:"2024", tier:"RCT", title:"Hand Massage Effect on Fatigue in Women Receiving Brachytherapy (Efe Arslan et al.)", journal:"Support Care Cancer", color:C.yellow },
{ num:"07", year:"2022", tier:"Clinical Trial", title:"TENS & Stabilisation Exercises for Pelvic Pain in Cancer Survivors (Mathias & Pattanshetty)", journal:"J Cancer Res Ther", color:C.teal },
{ num:"08", year:"2025", tier:"RCT", title:"Non-ablative RF vs Promestriene for Genitourinary Syndrome in Cervical Cancer (Grossi et al.)", journal:"J Sex Med", color:C.coral },
];
papers.forEach((p, i) => {
const col = i < 4 ? 0 : 1;
const row = i % 4;
const x = col === 0 ? 0.3 : 6.8;
const y = 1.2 + row * 1.5;
s.addShape(pres.ShapeType.rect, { x, y, w:6.1, h:1.35, fill:{color:C.panel}, line:{color:p.color, pt:1.5} });
s.addShape(pres.ShapeType.rect, { x, y, w:0.55, h:1.35, fill:{color:p.color}, line:{type:"none"} });
s.addText(p.year, { x, y:y+0.1, w:0.55, h:0.55, fontSize:11, bold:true, color:C.bg, fontFace:"Calibri", align:"center", valign:"middle", margin:0 });
s.addText(p.tier, { x, y:y+0.65, w:0.55, h:0.65, fontSize:9, color:C.bg, fontFace:"Calibri", align:"center", valign:"middle", margin:0 });
s.addText(p.title, { x:x+0.65, y:y+0.05, w:5.35, h:0.85, fontSize:11.5, color:C.offWhite, fontFace:"Calibri", valign:"top" });
s.addText(p.journal, { x:x+0.65, y:y+0.9, w:5.35, h:0.4, fontSize:10, color:p.color, fontFace:"Calibri", italic:true, valign:"middle" });
});
}
// SLIDE 16 — Research Insights (PMID details)
bulletSlide(pres,
"RECENT EVIDENCE: KEY INSIGHTS FOR PHYSIOTHERAPISTS",
[
{ text:"Exercise for Cancer-Related Fatigue (CRF)", bold:true, color:C.green },
"ASCO-SIO 2024 Guideline: Exercise + psychological interventions = RECOMMENDED for all cancer survivors with fatigue",
"Aerobic training (moderate-intensity, ≥150 min/week) + resistance training = most effective combination (PMID: 38754041)",
"Benefit seen both during and after treatment (Malveiro et al., Sys Rev 2023)",
"",
{ text:"Brachytherapy-Specific PT Interventions", bold:true, color:C.teal },
"Acupressure (Duzova et al., RCT 2025, PMID: 40679634): Significantly reduced anxiety (p<0.05), depression and pain scores in patients receiving gynecological brachytherapy",
"Hand Massage (Efe Arslan et al., RCT 2024, PMID: 39625640): Significantly reduced fatigue levels in women undergoing brachytherapy",
"TENS + Core Stabilisation (Mathias & Pattanshetty, 2022, PMID: 36149171): Reduced pelvic pain post multimodal cancer treatment",
"",
{ text:"Sexual Function Post-Brachytherapy", bold:true, color:C.coral },
"Vaginal dilator therapy + pelvic floor PT = cornerstone for preventing stenosis",
"Non-ablative radiofrequency shows promise for genitourinary syndrome (Grossi et al., RCT 2025)",
"Sexual dysfunction affects majority of cervical cancer survivors — requires proactive screening",
]
);
// SLIDE 17 — MDT Role
twoColSlide(pres,
"THE PHYSIOTHERAPIST IN THE MDT — YOUR UNIQUE ROLE",
"During Treatment Phase",
[
"Patient education: what to expect, self-care",
"Breathing & relaxation techniques for procedure anxiety",
"Gentle mobility to prevent deconditioning",
"Fatigue management education",
"Bladder/bowel diary and advice",
"Early lymphedema screening",
],
"Post-Treatment Phase",
[
"Comprehensive pelvic floor assessment",
"Vaginal dilator programme supervision",
"Progressive exercise rehabilitation",
"Lymphedema CDT (MLD + compression)",
"Pain management (TENS, manual therapy)",
"Sexual health rehabilitation",
"Return-to-activity guidance & occupational advice",
"Psychosocial support & MDT communication",
]
);
// SLIDE 18 — Clinical Pathways
bulletSlide(pres,
"PHYSIOTHERAPY CARE PATHWAY — GYNAE BRACHYTHERAPY",
[
{ text:"Pre-Treatment (if accessible)", bold:true, color:C.yellow },
"Baseline assessment: Pelvic floor, functional capacity, lymphedema risk screening",
"Education about expected side effects, dilator therapy, pelvic floor exercises",
"",
{ text:"Acute Phase (0–6 weeks post-treatment)", bold:true, color:C.yellow },
"Rest-activity balance; fatigue diary; gentle walking programme",
"Bladder/bowel symptom management; breathing exercises",
"TENS for pain as needed; gentle pelvic floor relaxation",
"",
{ text:"Sub-acute Phase (6 weeks – 3 months)", bold:true, color:C.teal },
"Pelvic floor rehabilitation: Dilators commence at 6–8 weeks",
"Progressive aerobic exercise: Build to 30 min moderate intensity 3–5×/week",
"Lymphedema: MLD if indicated; garment fitting; skin care education",
"Sexual rehabilitation assessment and programme initiation",
"",
{ text:"Long-term Maintenance (3 months +)", bold:true, color:C.teal },
"Annual review: Pelvic floor, lymphedema, bone health, psychosocial",
"Maintain exercise programme; refer for osteoporosis management if premature menopause",
"Continue dilator therapy for at least 12–24 months",
]
);
// SLIDE 19 — Summary & Key Takeaways
{
const s = pres.addSlide();
addBg(s, C.bg);
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:13.3, h:1.05, fill:{color:C.panel}, line:{type:"none"} });
s.addShape(pres.ShapeType.rect, { x:0, y:0, w:0.22, h:1.05, fill:{color:C.coral}, line:{type:"none"} });
s.addText("SUMMARY & CLINICAL TAKEAWAYS", { x:0.35, y:0.1, w:12.5, h:0.85, fontSize:22, bold:true, color:C.coral, fontFace:"Calibri", valign:"middle", margin:0 });
const takes = [
{ icon:"✦", text:"Brachytherapy delivers precise high-dose radiation with minimal impact on surrounding structures — physiotherapists must understand its mechanism.", color:C.teal },
{ icon:"✦", text:"3D IGABT (Image-Guided Adaptive BT) is the modern gold standard for cervical cancer — improved outcomes, half the toxicity of 2D.", color:C.lightBlue },
{ icon:"✦", text:"Key physio targets: Cancer-related fatigue, pelvic floor dysfunction, vaginal stenosis, lymphedema, sexual rehabilitation, and psychological wellbeing.", color:C.green },
{ icon:"✦", text:"Exercise (aerobic + resistance) is the strongest evidence-based intervention for CRF — ASCO 2024 Guideline.", color:C.yellow },
{ icon:"✦", text:"Acupressure & hand massage have Level 1 RCT evidence for anxiety, pain and fatigue reduction specifically in brachytherapy patients.", color:C.coral },
{ icon:"✦", text:"Vaginal dilator therapy + pelvic floor PT should begin at 6–8 weeks post-treatment and continue for 1–2 years.", color:C.teal },
{ icon:"✦", text:"Physiotherapists play an irreplaceable MDT role: from pre-treatment education through long-term survivorship care.", color:C.green },
];
takes.forEach((t, i) => {
const y = 1.15 + i * 0.87;
s.addShape(pres.ShapeType.rect, { x:0.3, y, w:12.5, h:0.78, fill:{color:C.panel}, line:{color:t.color, pt:1.2} });
s.addShape(pres.ShapeType.rect, { x:0.3, y, w:0.55, h:0.78, fill:{color:t.color}, line:{type:"none"} });
s.addText(t.icon, { x:0.3, y, w:0.55, h:0.78, fontSize:16, color:C.bg, fontFace:"Calibri", align:"center", valign:"middle", margin:0 });
s.addText(t.text, { x:0.95, y:y+0.08, w:11.7, h:0.62, fontSize:12.5, color:C.offWhite, fontFace:"Calibri", valign:"middle" });
});
}
// SLIDE 20 — References
bulletSlide(pres,
"REFERENCES",
[
{ text:"Textbooks", bold:true, color:C.teal },
"Berek & Novak's Gynecology — Cervical Cancer: Brachytherapy (pp. 2253–2260)",
"Grainger & Allison's Diagnostic Radiology 7th Ed. — Chapter 67: Radiotherapy Principles",
"",
{ text:"Clinical Guidelines", bold:true, color:C.teal },
"GEC-ESTRO Recommendations for Image-Guided Brachytherapy in Cervical Cancer",
"ASCO-SIO Guideline: Management of Fatigue in Adult Survivors of Cancer (2024)",
"",
{ text:"Recent Research Papers (PubMed-Verified)", bold:true, color:C.teal },
"Bower et al. (2024). Fatigue guideline update. J Clin Oncol. PMID: 38754041",
"Herranz-Gómez et al. (2023). Exercise for CRF. Arch Phys Med Rehabil. PMID: 36736602",
"Dong et al. (2023). Exercise for CRF, network meta-analysis. JOSPT. PMID: 36947532",
"Duzova et al. (2025). Acupressure in gynae brachytherapy. Support Care Cancer. PMID: 40679634",
"Efe Arslan et al. (2024). Hand massage for fatigue. Support Care Cancer. PMID: 39625640",
"Mathias & Pattanshetty (2022). TENS for pelvic pain. J Cancer Res Ther. PMID: 36149171",
"Chin & Damast (2023). Brachytherapy & sexual function. Brachytherapy. PMID: 36567175",
"Grossi et al. (2025). RF for genitourinary syndrome. J Sex Med. PMID: 40312849",
"Malveiro et al. (2023). Exercise in neoadjuvant treatment. J Sci Med Sport. PMID: 37696693",
],
{ h: 6.0 }
);
// ─────────────────────────────────────────────
// WRITE FILE
pres.writeFile({ fileName: "/home/daytona/workspace/brachytherapy-ppt/Brachytherapy_Physiotherapy.pptx" })
.then(() => console.log("✅ Presentation created successfully!"))
.catch(err => console.error("❌ Error:", err));
cd /home/daytona/workspace/brachytherapy-ppt && node build.js 2>&1
ls -lh /home/daytona/workspace/brachytherapy-ppt/Brachytherapy_Physiotherapy.pptx